Created
June 11, 2021 07:56
-
-
Save Dobby89/b8274c9d31fee0f0058f9546a233d686 to your computer and use it in GitHub Desktop.
Cypress snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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