Skip to content

Commit

Permalink
Add viewport 1080p
Browse files Browse the repository at this point in the history
  • Loading branch information
zdrapela committed Jul 11, 2024
1 parent 30571b7 commit 867dde0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions e2e-tests/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,18 @@ export default defineConfig({
projects: [
{
name: 'showcase',
use: { ...devices['Desktop Chrome'] },
use: {
...devices['Desktop Chrome'],
viewport: { width: 1920, height: 1080 },
},
testIgnore: '**/playwright/e2e/plugins/rbac/**/*.spec.ts',
},
{
name: 'showcase-rbac',
use: { ...devices['Desktop Chrome'] },
use: {
...devices['Desktop Chrome'],
viewport: { width: 1920, height: 1080 },
},
testMatch: '**/playwright/e2e/plugins/rbac/**/*.spec.ts',
},

Expand Down

0 comments on commit 867dde0

Please sign in to comment.