We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 382eeb0 commit fe1d9aaCopy full SHA for fe1d9aa
1 file changed
scripts/test-browser-banner.mjs
@@ -8,7 +8,10 @@ import {
8
} from 'node:fs'
9
import {join} from 'node:path'
10
import {tmpdir} from 'node:os'
11
-import {chromium} from 'playwright'
+// `playwright` is a transitive dependency via `@playwright/test`; importing it
12
+// directly only resolves when pnpm hoists it (default locally, off in CI).
13
+// The runner package re-exports the same browser launchers, so use it.
14
+import {chromium} from '@playwright/test'
15
16
function runUntilMatch(
17
command,
0 commit comments