UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

14 lines (11 loc) 205 B
describe('suite', () => { beforeEach(() => { cy.visit('the://url') cy.get('body').then(() => { throw new Error('Failing Test') }) }) it('test', () => { cy.get('body') }) })