Skip to content

Commit 5f32c3f

Browse files
CopilotGeekTrainer
andcommitted
Update Playwright configuration to use only Chromium browser
Co-authored-by: GeekTrainer <[email protected]>
1 parent 2e318d0 commit 5f32c3f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"test:e2e:ui": "playwright test --ui",
1212
"test:e2e:debug": "playwright test --debug",
1313
"test:e2e:headed": "playwright test --headed",
14-
"test:e2e:webkit": "playwright test --project=webkit"
14+
"test:e2e:chromium": "playwright test --project=chromium"
1515
},
1616
"dependencies": {
1717
"@astrojs/node": "^9.1.3",

client/playwright.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export default defineConfig({
2727
/* Configure projects for major browsers */
2828
projects: [
2929
{
30-
name: 'webkit',
31-
use: { ...devices['Desktop Safari'] },
30+
name: 'chromium',
31+
use: { ...devices['Desktop Chrome'] },
3232
},
3333
],
3434

0 commit comments

Comments
 (0)