@typed/test
Version:
Testing made simple.
24 lines • 1.05 kB
JavaScript
import { getModifier } from '../tests/getModifier';
import { updateModifier } from '../tests/updateModifier';
import { TYPED_TEST } from '../types';
import { chain } from './flatten';
export function runTests(defaultTimeout, metadata) {
return Promise.all(findTestsToRun(metadata).map(m => Promise.all(m.tests.map(runTest(defaultTimeout))).then(results => (Object.assign({}, m, { results })))));
}
function runTest(defaultTimeout) {
return (test) => {
const { modifier, timeout = defaultTimeout } = test[TYPED_TEST];
return test.runTest({ timeout, skip: modifier === 'skip' });
};
}
function findTestsToRun(metadata) {
const tests = chain(x => x.tests, metadata);
const hasOnly = tests.some(x => x[TYPED_TEST].modifier === 'only');
return metadata.map(m => {
const testsToRun = hasOnly
? m.tests.map(x => (getModifier(x) === 'only' ? x : updateModifier('skip', x)))
: m.tests;
return Object.assign({}, m, { tests: testsToRun });
});
}
//# sourceMappingURL=runTests.js.map