How to set viewport of mobile device for Cypress tests?

Let me know how I can set viewport of mobile device in Cypress.

Hello Macy,

Use the following command:

cy.viewport(550, 750) // Set viewport to 550px x 750px 
cy.viewport('iphone-6') // Set viewport to 375px x 667px 

Refer to this documentation for more details: [viewport | Cypress Documentation]