Skip to content

Commit 7ed9f73

Browse files
committed
test(playwright): add tablet landscape viewport and remove mobile small
The mobile small viewport was removed as it's no longer needed for testing, while tablet landscape was added to improve test coverage for tablet devices
1 parent f3fcac7 commit 7ed9f73

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/playwright/helpers/navigation-helpers.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@ export interface ViewportSize {
2222
export const VIEWPORTS: ViewportSize[] = [
2323
{ width: 1920, height: 1080, name: "Desktop Large" },
2424
{ width: 1681, height: 768, name: "Desktop Standard" },
25+
{ width: 1036, height: 620, name: "Tablet Landscape" },
2526
{ width: 620, height: 1024, name: "Tablet Portrait" },
26-
{ width: 1024, height: 620, name: "Tablet Landscape" },
2727
{ width: 460, height: 667, name: "Mobile" },
28-
{ width: 320, height: 568, name: "Mobile Small" }
2928
];
3029

3130
// Primary navigation items based on navigation.yaml analysis

0 commit comments

Comments
 (0)