Skip to content Skip to sidebar Skip to footer

Cypress - Stubbing Using Route(options) Isn't Work

I try to simulate bad request by returning status code = 400. I followed the documentation and found that I need to use the route function with an options: Both of those didn't wo

Solution 1:

In case someone will come across this issue, you need to pass response as one of the parameters, like this:

cy.route({
  method : 'GET',
  url: 'users',
  status: 400,
  response: {}
});

Post a Comment for "Cypress - Stubbing Using Route(options) Isn't Work"