diff --git a/e2e/tests/plugin-explorer.spec.ts b/e2e/tests/plugin-explorer.spec.ts index b77898e22..e985f4e5c 100644 --- a/e2e/tests/plugin-explorer.spec.ts +++ b/e2e/tests/plugin-explorer.spec.ts @@ -2,7 +2,10 @@ import { expect, test } from '@playwright/test' test.describe.configure({ mode: 'serial' }) -test.beforeEach(async ({ page }) => { +test.beforeEach(async ({ page, browser }) => { + browser.newContext({ + viewport: { width: 1920, height: 1024 }, + }) await page.goto('http://localhost:3000/') await page.getByRole('button', { name: 'data source DemoDataSource' }).click() await page.getByRole('button', { name: 'root package plugins' }).click()