diff --git a/e2e/package.json b/e2e/package.json index 238536f9..65068a42 100644 --- a/e2e/package.json +++ b/e2e/package.json @@ -4,7 +4,7 @@ "version": "0.0.1", "scripts": { "test": "pnpm run i:webkit && playwright test", - "i:webkit": "playwright install webkit" + "i:webkit": "playwright install-deps" }, "dependencies": { "devcert": "1.2.2", diff --git a/e2e/playwright.config.ts b/e2e/playwright.config.ts index c2b53e73..353f9164 100644 --- a/e2e/playwright.config.ts +++ b/e2e/playwright.config.ts @@ -1,9 +1,5 @@ -import { defineConfig, devices } from '@playwright/test'; +import { defineConfig } from '@playwright/test'; export default defineConfig({ testMatch: ['/cases/**/**.test.ts'], - name: 'chrome', - use: { - ...devices.DesktopChrome, - }, });