Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 639 Bytes

File metadata and controls

10 lines (6 loc) · 639 Bytes

Cypress events

For more details, see Cypress catalogue of events

  • cypress-on-spec.cy.js shows how we can add a property to every window object before the app load using Cypress.on('window:before:load', ...) event listener
  • cy-on-spec.cy.js shows how to add a property to every window object before the app loads using cy.on('window:before:load', ...) event listener.

See also