UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

16 lines (12 loc) 296 B
import './setup' describe('assertion failures', () => { it('with expect().<foo>', () => { expect('actual').to.equal('expected') }) it('with assert()', () => { assert(false, 'should be true') }) it('with assert.<foo>()', () => { assert.equal('actual', 'expected') }) })