Skip to content

Commit 62d3270

Browse files
authored
Chore/change test viewport (#537)
1 parent 59da8ee commit 62d3270

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/e2e/playwright.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ export const config: PlaywrightTestConfig = {
2727
testIgnore: '**/release/**',
2828

2929
projects: [
30-
{ name: 'chromium', use: { ...devices['Desktop Chrome'] } },
30+
{ name: 'chromium', use: { ...devices['Desktop Chrome'], viewport: { width: 1920, height: 1080 } } },
3131
...(process.env.CI
3232
? []
3333
: [
34-
{ name: 'firefox', use: { ...devices['Desktop Firefox'] } },
35-
{ name: 'webkit', use: { ...devices['Desktop Safari'] } },
34+
{ name: 'firefox', use: { ...devices['Desktop Firefox'], viewport: { width: 1920, height: 1080 } } },
35+
{ name: 'webkit', use: { ...devices['Desktop Safari'], viewport: { width: 1920, height: 1080 } } },
3636
]),
3737
],
3838
}

0 commit comments

Comments
 (0)