diff --git a/e2e/cli-e2e/tests/assert.e2e.test.ts b/e2e/cli-e2e/tests/assert.e2e.test.ts deleted file mode 100644 index fe81e612..00000000 --- a/e2e/cli-e2e/tests/assert.e2e.test.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { describe, expect, it } from 'vitest'; -import { executeProcess } from '@code-pushup/utils'; - -describe.skip('user-flow assert', () => { - it('should run test', async () => { - const { code, stdout, stderr } = await executeProcess({ - command: 'echo', - args: ['value'] - }) - expect(code).toBe(0); - expect(stdout).toContain('value'); - expect(stderr).toBe(''); - expect('value').toBeTruthy(); - }) -}) diff --git a/e2e/cli-e2e/tests/help.e2e.test.ts b/e2e/cli-e2e/tests/help.e2e.test.ts deleted file mode 100644 index 88a7c2b6..00000000 --- a/e2e/cli-e2e/tests/help.e2e.test.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { describe, expect, it } from 'vitest'; -import { executeProcess } from '@code-pushup/utils'; - -describe.skip('user-flow help', () => { - - it('should print global help', async () => { - - const { code, stdout, stderr } = await executeProcess({ - command: 'user-flow', - args: ['help'] - }); - - expect(code).toBe(0); - expect(stderr).toBe(''); - expect(stdout).toMatchSnapshot(); - }) -})