Files
cypress/system-tests/test/viewport_spec.js
T
Alejandro Estrada e5c1f91652 feat: show better error message if testing type is not configured (#22000)
* feat: show better error message if testing type is not configured

* Add tests

* Update tests

* Fix some tests

* Fix some tests

* Fix test

* Fix tests

* Update packages/errors/src/errors.ts

Co-authored-by: Jennifer Shehane <jennifer@cypress.io>

* Update with code review

* Fix test

* Add on link

Co-authored-by: Jennifer Shehane <jennifer@cypress.io>
2022-06-07 15:47:24 -05:00

17 lines
297 B
JavaScript

const systemTests = require('../lib/system-tests').default
describe('e2e viewport', () => {
systemTests.setup({
settings: {
viewportWidth: 800,
viewportHeight: 600,
e2e: {},
},
})
systemTests.it('passes', {
spec: 'viewport.cy.js',
snapshot: true,
})
})