Skip to content

Instantly share code, notes, and snippets.

@jaysoo
Last active October 16, 2019 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaysoo/5cbdb91603f1d566fb2a3b4080b9745c to your computer and use it in GitHub Desktop.
Save jaysoo/5cbdb91603f1d566fb2a3b4080b9745c to your computer and use it in GitHub Desktop.
describe('demo', () => {
beforeEach(() => {
cy.viewport(1024, 768);
cy.visit('/');
});
it('should display viewport dimensions', () => {
cy.get('.app').contains('1024px / 768px');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment