(ms: number)
| 6 | |
| 7 | // a promise based delay that's not accurate at all |
| 8 | const delay = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)) |
| 9 | |
| 10 | test("adds benchmarks to a report", async () => { |
| 11 | const client = createClient({ createSocket }).use(plugin()) |
no outgoing calls
no test coverage detected