From 0d9addf1adc72ccbb915a26de78f137e9047863b Mon Sep 17 00:00:00 2001 From: Svana Date: Mon, 18 Nov 2024 13:59:08 +0000 Subject: [PATCH] Change web start command e2e playwright --- apps/web/playwright.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/playwright.config.ts b/apps/web/playwright.config.ts index 06bd1a597476..59f0f40d189b 100644 --- a/apps/web/playwright.config.ts +++ b/apps/web/playwright.config.ts @@ -2,7 +2,8 @@ import { createPlaywrightConfig } from '@island.is/testing/e2e' const playwrightConfig = createPlaywrightConfig({ webServerUrl: 'http://localhost:4200', - command: '(yarn dev-init web && yarn dev web)', + command: + '(cd infra && yarn cli run-local-env web --dependencies api --print --no-secrets --proxies)', cwd: '../../', })