diff --git a/frontend/playwright.config.js b/frontend/playwright.config.js index 09f33d68d1..18cd3b43b7 100644 --- a/frontend/playwright.config.js +++ b/frontend/playwright.config.js @@ -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, }, diff --git a/frontend/scripts/test-e2e b/frontend/scripts/test-e2e index eaa2e01937..dd25bed989 100755 --- a/frontend/scripts/test-e2e +++ b/frontend/scripts/test-e2e @@ -5,5 +5,4 @@ SCRIPT_DIR=$(dirname $0); set -ex $SCRIPT_DIR/setup; - pnpm run test:e2e -x --workers=2 --reporter=list "$@";