diff --git a/package.json b/package.json index 712288570f..4cf0b75a22 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "export": "pnpm --filter @pathfinder/app export", "start": "pnpm --filter @pathfinder/app start", "lint": "pnpm --filter @pathfinder/app lint", + "test": "playwright test", "test:e2e": "playwright test", "test:unit": "jest" }, diff --git a/playwright.config.ts b/playwright.config.ts index db2bfa5155..853afe8b80 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -50,21 +50,9 @@ const config: PlaywrightTestConfig = { { name: 'chromium', use: { - ...devices['Desktop Chrome'], - }, - }, - - { - name: 'firefox', - use: { - ...devices['Desktop Firefox'], - }, - }, - - { - name: 'webkit', - use: { - ...devices['Desktop Safari'], + browserName: 'chromium', + viewport: { width: 1920, height: 1080 }, + actionTimeout: 5 * 1000, }, },