UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

12 lines (9 loc) 220 B
import './setup' describe('commands', { defaultCommandTimeout: 0 }, () => { it('failure', () => { cy.get('#does-not-exist') }) it('chained failure', () => { cy.get('body').find('#does-not-exist') }) })