NewsBlur/node/node_modules/@postlight/ci-failed-test-reporter/index.test.js

13 lines
392 B
JavaScript
Raw Normal View History

import path from 'path';
import { getReport } from './index';
describe('getReport', () =>
test('returns formatted test report', () => {
// don't test the whitespace formatting, just the content
const testReport = getReport(
path.join(__dirname, 'src/tests/test-output.test.json')
).replace(/\s/g, '');
expect(testReport.startsWith('<details>')).toBeTruthy();
}));