(data)
| 20 | } |
| 21 | |
| 22 | function startTest(data) { |
| 23 | const originalSuite = currentSuite; |
| 24 | currentSuite = { __proto__: null, data, parent: currentSuite, children: [] }; |
| 25 | if (originalSuite?.children) { |
| 26 | ArrayPrototypePush(originalSuite.children, currentSuite); |
| 27 | } |
| 28 | if (!currentSuite.parent) { |
| 29 | ArrayPrototypePush(roots, currentSuite); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | for await (const { type, data } of source) { |
| 34 | let currentTest; |
no outgoing calls
no test coverage detected
searching dependent graphs…