Fix e2e scripts related to pnpm change

This commit is contained in:
Andrey Antukh
2026-01-07 10:41:41 +01:00
parent 1246250198
commit 2d00e64ede
2 changed files with 1 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ export default defineConfig({
/* Run your local dev server before starting the tests */
webServer: {
timeout: 2 * 60 * 1000,
command: "yarn run e2e:server",
command: "pnpm run e2e:server",
url: "http://localhost:3000",
reuseExistingServer: !process.env.CI,
},

View File

@@ -5,5 +5,4 @@ SCRIPT_DIR=$(dirname $0);
set -ex
$SCRIPT_DIR/setup;
pnpm run test:e2e -x --workers=2 --reporter=list "$@";