Description
Is your feature request related to a problem? Please describe.
We should define a minimum resolution for our E2E tests, right now Cypress uses its default resolution of 1000×660
, that is smaller than a typical desktop screen, we should set it to 1280×720
at least, which is a common minimum for desktop environments. We already override the resolution in individual tests (e.g., 1280×720
or 1440×900
) based on specific scenarios, it would be better to update the global default to avoid relying on the lower 1000×660
baseline.
Describe the solution you'd like
We can easily set the viewport resolution in the Cypress defineConfig
object.
Describe alternatives you've considered
Additional context
This suggestion has already been approved by the QA team in a slack thread.