We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7ffcdc commit dbff677Copy full SHA for dbff677
tests/playwright/helpers/navigation-helpers.ts
@@ -17,13 +17,14 @@ export interface ViewportSize {
17
name: string;
18
}
19
20
-// Common viewport sizes for responsive testing
+// Vanilla viewport sizes for responsive testing
21
+// https://vanillaframework.io/docs/settings/breakpoint-settings
22
export const VIEWPORTS: ViewportSize[] = [
23
{ width: 1920, height: 1080, name: "Desktop Large" },
- { 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" },
+ { width: 1681, height: 768, name: "Desktop Standard" },
+ { width: 620, height: 1024, name: "Tablet Portrait" },
+ { width: 1024, height: 620, name: "Tablet Landscape" },
27
+ { width: 460, height: 667, name: "Mobile" },
28
{ width: 320, height: 568, name: "Mobile Small" }
29
];
30
tests/playwright/tests/navigation/navigation-flows.spec.ts
@@ -22,7 +22,6 @@ test.describe("Navigation Flows - E2E Tests", () => {
test.beforeEach(async ({ page }) => {
await navigateToHomepage(page);
- await acceptCookiePolicy(page);
});
test.describe("Primary Navigation Structure", () => {
0 commit comments