UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

12 lines (11 loc) 201 B
describe('ended early', () => { it('can end early without problems', (done) => { cy .wrap(null) .then(() => { done() }).then(() => { throw new Error('foo') }) }) })