Repository URL to install this package:
|
Version:
0.0.3 ▾
|
jest.mock('../tester');
const tester = require('../tester');
describe('index.js', () => {
it('runs the tests that have been found in the project folder', () => {
console.log = jest.fn();
jest.spyOn(tester, 'runTests');
require('../index');
expect(tester.runTests)
.toHaveBeenCalledWith([
expect.objectContaining({ id: 'fakeTestA11yFile' }),
expect.objectContaining({ id: 'fakeTestFile' })
]);
});
});