Guest User

Untitled

a guest
Sep 17th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. describe('My test', () => {
  2. beforeEach(() => {
  3. cy.visit('http://localhost:3000', {
  4. onBeforeLoad(win) {
  5. cy.spy(win, 'fetch')
  6. },
  7. })
  8.  
  9. cy.window().its('fetch').should('be.calledWith', 'http://whatever.com/stuff')
Add Comment
Please, Sign In to add comment