W3cubDocs

/Cypress

Cypress.Server

Permanently change the default options for all cy.server() instances

Syntax

Cypress.Server.defaults(options)

Arguments

options (Object)

Pass in an options object to change the default behavior of Cypress.Server.

Examples

Options

These options will be the new defaults.

// pass anything here you'd normally pass to cy.server().
Cypress.Server.defaults({
  delay: 500,
  force404: false,
  ignore: (xhr) => {
    // handle custom logic for filtering XHR requests
  }
})

Notes

Where to put server configuration

A great place to put this configuration is in your cypress/support/index.js file, since it is loaded before any test files are evaluated.

See also

© 2020 Cypress.io
Licensed under the MIT License.
https://docs.cypress.io/api/cypress-api/cypress-server.html