NewsBlur/node/node_modules/@postlight/ci-failed-test-reporter/index.test.js
2019-04-13 14:44:10 -04:00

12 lines
392 B
JavaScript

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();
}));