UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

86 lines (75 loc) 1.71 kB
import { abortXhr, sendXhr } from './setup' describe('cy.route', { defaultCommandTimeout: 0 }, () => { it('callback assertion failure', () => { cy.server().route(() => { expect('actual').to.equal('expected') }) }) it('callback exception', () => { cy.server().route(() => { ({}).bar() }) }) it('command failure', () => { cy.server().route(() => { cy.get('#does-not-exist') return '/foo' }) }) it('onAbort assertion failure', () => { cy.server().route({ url: '/foo', onAbort () { expect('actual').to.equal('expected') }, }) .window().then(abortXhr('/foo')) }) it('onAbort exception', () => { cy.server().route({ url: '/foo', onAbort () { ({}).bar() }, }) .window().then(abortXhr('/foo')) }) it('onRequest assertion failure', () => { cy.server().route({ url: '/foo', onRequest () { expect('actual').to.equal('expected') }, }) .window().then(sendXhr('/foo')) }) it('onRequest exception', () => { cy.server().route({ url: '/foo', onRequest () { ({}).bar() }, }) .window().then(sendXhr('/foo')) }) it('onResponse assertion failure', () => { cy.server().route({ url: '/json-content-type', onResponse () { expect('actual').to.equal('expected') }, }) .window().then(sendXhr('/json-content-type')) .wait(10000) }) it('onResponse exception', () => { cy.server().route({ url: '/json-content-type', onResponse () { ({}).bar() }, }) .window().then(sendXhr('/json-content-type')) .wait(10000) }) })