(ms)
| 12 | const PROJECT_ROOT = resolve(dirname(fileURLToPath(import.meta.url)), "../.."); |
| 13 | |
| 14 | function wait(ms) { |
| 15 | return new Promise((resolve) => setTimeout(resolve, ms)); |
| 16 | } |
| 17 | |
| 18 | function createTestScript(withFix) { |
| 19 | const buildPath = join(PROJECT_ROOT, "build/core/process-lifecycle.js").replace(/\\/g, "/"); |
no outgoing calls
no test coverage detected