Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1x 1x | /** * The purpose of this file is to bundle all testing * entrypoints into one chunk. This cuts down on extraneous * code generation and addresses a race issue with the * timer task queue. */ import './setupTestEnv'; // webpack will include files that match the regex // '..' refers to the Sources/ dir const testsContext = require.context('..', true, /test[^/]*\.js$/); testsContext.keys().forEach(testsContext); |