Skip to content

Commit 436673f

Browse files
committed
remove duplicate test
1 parent 83bdb98 commit 436673f

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

e2e/cli-e2e/tests/collect.e2e.test.ts

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,6 @@ describe('CLI collect', () => {
4949
await cleanTestFolder('tmp/e2e/react-todos-app');
5050
});
5151

52-
it('should run ESLint plugin and create report.json', async () => {
53-
const { code, stderr } = await executeProcess({
54-
command: 'code-pushup',
55-
args: ['collect', '--no-progress', '--onlyPlugins=eslint'],
56-
cwd: 'examples/react-todos-app',
57-
});
58-
59-
expect(code).toBe(0);
60-
expect(stderr).toBe('');
61-
62-
const report = await readJsonFile('tmp/e2e/react-todos-app/report.json');
63-
64-
expect(() => reportSchema.parse(report)).not.toThrow();
65-
expect(omitVariableReportData(report as Report)).toMatchSnapshot();
66-
});
67-
6852
it('should run Code coverage plugin which collects passed results and creates report.json', async () => {
6953
/**
7054
* The stats passed in the fixture are as follows

0 commit comments

Comments
 (0)