Cypress Set Viewport
//add this in cypress.json
{
"viewportWidth": 1280,
"viewportHeight": 720
}
Batman
//add this in cypress.json
{
"viewportWidth": 1280,
"viewportHeight": 720
}
// pass viewport in cmd, this will over ride settings in cypress.json
"script_name": "./node_modules/.bin/cypress run --browser chrome --config viewportWidth=414,viewportHeight=896 --spec 'cypress/integration/file_name.js'"