mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-23 07:34:00 -05:00
e5c1f91652
* 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>
17 lines
297 B
JavaScript
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,
|
|
})
|
|
})
|