Skip to content

Commit 38c7a45

Browse files
committed
fix(chrome-ext): possible webserver fix
1 parent 1186655 commit 38c7a45

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/just_checks.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ jobs:
3939
uses: actions/setup-node@v4
4040
with:
4141
node-version-file: ".node-version"
42-
package-manager-cache: false
4342
- name: Enable Corepack
4443
run: corepack enable
4544
- name: Rust Cache

packages/chrome-plugin/playwright.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ export default defineConfig({
2020
},
2121
globalTimeout: 120000,
2222
webServer: {
23-
command: 'pnpm http-server ./tests/pages/ -p 8081',
23+
command: 'pnpm exec http-server ./tests/pages -p 8081 -a 127.0.0.1',
2424
url: 'http://127.0.0.1:8081',
25-
stdout: 'ignore',
25+
stdout: 'pipe',
2626
stderr: 'pipe',
2727
},
2828
/* Configure projects for major browsers */

0 commit comments

Comments
 (0)