(n, fixtureFileURL)
| 15 | }); |
| 16 | |
| 17 | async function load(n, fixtureFileURL) { |
| 18 | const array = []; |
| 19 | for (let i = 0; i < n; i++) { |
| 20 | array[i] = await import(`${fixtureFileURL}?i=${i}`); |
| 21 | } |
| 22 | return array; |
| 23 | } |
| 24 | |
| 25 | function main({ n, valuesToRead }) { |
| 26 | const fixtureDir = path.resolve(__filename, '../../fixtures'); |
no outgoing calls
no test coverage detected
searching dependent graphs…