()
| 58 | } |
| 59 | |
| 60 | async function ensureWebcontainerFixture() { |
| 61 | if (!FORCE && existsSync(path.join(FIXTURE_WC, 'index.html'))) { |
| 62 | console.log('[e2e:orchestrate] webcontainer fixture exists — skipping (set E2E_REBUILD=1 to force).') |
| 63 | return |
| 64 | } |
| 65 | console.log('[e2e:orchestrate] Building webcontainer-mode bundle...') |
| 66 | run('pnpm -C packages/node-modules-inspector run wc:build') |
| 67 | await copyDir(DIST_PUBLIC, FIXTURE_WC) |
| 68 | await writeMarker('webcontainer') |
| 69 | } |
| 70 | |
| 71 | async function ensureMainBuildAndStaticFixture() { |
| 72 | const hasFixture = existsSync(path.join(FIXTURE_BUILD, 'index.html')) |
no test coverage detected
searching dependent graphs…