Skip to content
Advertisement

Cypress: Using cy.intercept() to check if a call hasnt been made yet?

Using cy.intercept() to intercept (and stub) a couple of network requests (to google tag manager), but would like to test at an early point in my test before I expect them to be called.

How would I test that the 2 routes I’m intercepting haven’t been called yet?

Thanks!

Advertisement

Answer

Intercept has a routeHandler section which can be a function

cy.intercept(routeMatcher, routeHandler?)

routeHandler (string | object | Function | StaticResponse)

The function receives the request, and inside that another function can receive the response,
see Intercepting a response

JavaScript

so either on the receipt of req or the inner function on receipt of res, set an external flag and test it at one or more places in the test,

JavaScript

This is very generalized, if you post some details can be more specific.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement