Skip to content

Commit

Permalink
remove old tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ETtestim committed Jul 8, 2024
1 parent 9e4b6d9 commit 6a891db
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/test/junitParser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,6 @@ import { parseTestReports } from '../junitParser';

const DIRNAME = __dirname;

// describe('JunitParser', () => {
// it('should parse junit report with 3 suites', async () => {
// const testReports = await parseTestReports('test', 'test', `${DIRNAME}/xml/testsuites.xml`, []);
// assert.strictEqual(testReports.length, 3);
// assert.deepEqual(testReports[0], getFirstSuite('xml/testsuites.xml'));
// });
// it('should parse junit report with 1 suite', async () => {
// const testReports = await parseTestReports('test', 'test', `${DIRNAME}/xml/testsuite.xml`, []);
// assert.strictEqual(testReports.length, 1);
// assert.deepEqual(testReports[0], getFirstSuite('xml/testsuite.xml'));
// });
// });
test('should parse junit report with 3 suites', async (t: any) => {
const testReports = await parseTestReports('test', 'test', `${DIRNAME}/xml/testsuites.xml`, []);
t.assert.snapshot(testReports.length);
Expand Down

0 comments on commit 6a891db

Please sign in to comment.