Skip to content

Instantly share code, notes, and snippets.

@jessesanders
Created December 7, 2018 19:24
Show Gist options
  • Save jessesanders/2fa0d47db902969f54abbb7e796197f6 to your computer and use it in GitHub Desktop.
Save jessesanders/2fa0d47db902969f54abbb7e796197f6 to your computer and use it in GitHub Desktop.
Cypress fixtures example
cy.server();
// we set the response to be the activites.json fixture
cy.route("GET", "users/*", "fixture:users.json");
//or
cy.fixture("users.json").as("usersJSON"); // alias the fixture
cy.route("GET", "users/*", "@usersJSON");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment