Skip to content

Commit f3fcac7

Browse files
committed
chore: address comments
1 parent c079cf0 commit f3fcac7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tests/playwright/helpers/navigation-helpers.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@ export interface ViewportSize {
1717
name: string;
1818
}
1919

20-
// Common viewport sizes for responsive testing
20+
// Vanilla viewport sizes for responsive testing
21+
// https://vanillaframework.io/docs/settings/breakpoint-settings
2122
export const VIEWPORTS: ViewportSize[] = [
2223
{ width: 1920, height: 1080, name: "Desktop Large" },
23-
{ width: 1366, height: 768, name: "Desktop Standard" },
24-
{ width: 1024, height: 768, name: "Tablet Landscape" },
25-
{ width: 768, height: 1024, name: "Tablet Portrait" },
26-
{ width: 375, height: 667, name: "Mobile" },
24+
{ width: 1681, height: 768, name: "Desktop Standard" },
25+
{ width: 620, height: 1024, name: "Tablet Portrait" },
26+
{ width: 1024, height: 620, name: "Tablet Landscape" },
27+
{ width: 460, height: 667, name: "Mobile" },
2728
{ width: 320, height: 568, name: "Mobile Small" }
2829
];
2930

tests/playwright/tests/navigation/navigation-flows.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ test.describe("Navigation Flows - E2E Tests", () => {
2222

2323
test.beforeEach(async ({ page }) => {
2424
await navigateToHomepage(page);
25-
await acceptCookiePolicy(page);
2625
});
2726

2827
test.describe("Primary Navigation Structure", () => {

0 commit comments

Comments
 (0)