testarmada-magellan
Version:
Massively parallel automated testing
28 lines (24 loc) • 511 B
JavaScript
/* eslint no-undef: 0 */
;
const settings = require('../src/settings');
const getTests = require('../src/get_tests');
jest.mock('../src/settings', () => {
return {
testFramework: {
iterator: () => ['a', 'b', 'c'],
filters: {
a: () => true,
b: () => true
}
}
};
});
describe('getTests', () => {
test('should get tests', () => {
const tests = getTests({
a: () => true,
b: () => true
});
expect(tests).toEqual(true);
});
});