feat: add playwright default dimensions

This commit is contained in:
Rohit
2025-03-14 12:25:20 +05:30
parent a047733e37
commit af18c72116

View File

@@ -1,6 +1,10 @@
export const VIEWPORT_W = 900;
export const VIEWPORT_H = 400;
// Default Playwright viewport dimensions
export const BROWSER_DEFAULT_WIDTH = 1280;
export const BROWSER_DEFAULT_HEIGHT = 720;
export const ONE_PERCENT_OF_VIEWPORT_W = VIEWPORT_W / 100;
export const ONE_PERCENT_OF_VIEWPORT_H = VIEWPORT_H / 100;