From 867dde041ca090ddf5774677877d8ff9f18360cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbyn=C4=9Bk=20Dr=C3=A1pela?= Date: Thu, 11 Jul 2024 10:57:01 +0200 Subject: [PATCH] Add viewport 1080p --- e2e-tests/playwright.config.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/e2e-tests/playwright.config.ts b/e2e-tests/playwright.config.ts index 6c88910a3..cb87391ed 100644 --- a/e2e-tests/playwright.config.ts +++ b/e2e-tests/playwright.config.ts @@ -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', },