(chunks)
| 9 | import runner from 'internal/test_runner/runner'; |
| 10 | |
| 11 | async function toArray(chunks) { |
| 12 | const arr = []; |
| 13 | for await (const i of chunks) arr.push(i); |
| 14 | return arr; |
| 15 | } |
| 16 | |
| 17 | const diagnosticEvent = { |
| 18 | type: 'test:diagnostic', |
no test coverage detected
searching dependent graphs…