(configs)
| 10 | n: [1e4], |
| 11 | }, { |
| 12 | setup(configs) { |
| 13 | tmpdir.refresh(); |
| 14 | const maxN = configs.reduce((max, c) => Math.max(max, c.n), 0); |
| 15 | createEntryPoint(maxN); |
| 16 | }, |
| 17 | }); |
| 18 | |
| 19 | function main({ type, n }) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…