()
| 42 | ]; |
| 43 | |
| 44 | export async function runBenchmarks () { |
| 45 | for (const benchmark of benchmarks) { |
| 46 | console.log(`Benchmarking '${benchmark.description}'.\n`); |
| 47 | const bench = await runBenchmark(benchmark); |
| 48 | printTable(bench); |
| 49 | } |
| 50 | |
| 51 | console.log('Finished!'); |
| 52 | } |
| 53 | |
| 54 | async function runBenchmark (benchmark) { |
| 55 | const bench = new Bench(); |
no test coverage detected
searching dependent graphs…