({ numberOfTestFiles, isolation })
| 40 | }); |
| 41 | |
| 42 | async function runBenchmark({ numberOfTestFiles, isolation }) { |
| 43 | const dirPath = getTestDirPath(numberOfTestFiles); |
| 44 | const stream = run({ |
| 45 | cwd: dirPath, |
| 46 | isolation, |
| 47 | concurrency: false, // We don't want to run tests concurrently |
| 48 | }); |
| 49 | |
| 50 | // eslint-disable-next-line no-unused-vars |
| 51 | for await (const _ of stream); |
| 52 | |
| 53 | return numberOfTestFiles; |
| 54 | } |
| 55 | |
| 56 | function main(params) { |
| 57 | setup(params.numberOfTestFiles); |
no test coverage detected
searching dependent graphs…