Skip to content

Instantly share code, notes, and snippets.

@Dobby89
Created June 11, 2021 07:56
Show Gist options
  • Save Dobby89/b8274c9d31fee0f0058f9546a233d686 to your computer and use it in GitHub Desktop.
Save Dobby89/b8274c9d31fee0f0058f9546a233d686 to your computer and use it in GitHub Desktop.
Cypress snippets
// Check how many requests were made to a particular endpoint
// https://stackoverflow.com/a/55604505/5243574
cy.intercept({
method: 'POST',
url: 'myUrl',
}, {
body: {}
}).as('myStubName');
cy.get('@myStubName.all').should('have.length', 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment