From 3fe97a863f3e084805329df87379011690307f88 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Tue, 25 Mar 2025 17:04:26 +0100 Subject: [PATCH] Update webserver command to use pnpm --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 2fac9a97e..ae9aa1a0b 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -2,7 +2,7 @@ import type { PlaywrightTestConfig } from '@playwright/test'; const config: PlaywrightTestConfig = { webServer: { - command: 'npm run dev', + command: 'pnpm run dev', port: 5173 }, fullyParallel: true,