From 7691dc80f841c1635ce17caa7a5890383468837c Mon Sep 17 00:00:00 2001 From: Niccolo Borgioli Date: Tue, 27 Aug 2024 10:56:21 +0200 Subject: [PATCH] use pnpm command --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 6851e8a..03bff72 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -12,7 +12,7 @@ const config: PlaywrightTestConfig = { timeout: 30_000, webServer: { - command: 'docker compose -f docker-compose.dev.yaml up', + command: 'pnpm run docker:up', port: 3000, reuseExistingServer: true, },