With version 6.0.0 a new command by the name of .intercept()
has been landed to Cypress.io. I have written a blog about this(it was available as an experimental feature). You can judge by the name, that there was clearly an intent to substitute the old command with the new one. Once the newest version came out, deprecating of .route()
command was announced. It will no longer be supported as of version 7.0.0, which means we all have some migrating to do.
First of all, the new .intercept()
command is awesome. It supports fetch, it can intercept both request and response of your app API calls and so much more. The other reason why you should consider migrating your .route()
to .intercept()
right now becomes apparent when you look into Cypress roadmap. Cypress is currently working on multi-domain support (OMG!) (EDIT: Multi-domain support landed with version 9.6.0) and plans to implement other cool features as Session API, file download and iframe support. You definitely don’t want to miss these, so keeping up with latest version is a good idea.
Looking into documentation, you can find some obvious differences between .route()
and .intercept()
:
The coolest additions to .intercept()
command are routeMatcher
and routeHandler
arguments.
routeMatcher
unleashes some amazing capabilities of matching your application API calls. Besides minimatch and RegEx, you can now specify your match by query, headers or even port or just path without query parameters. That is some power!
routeHandler
gives you some amazing options on intercepting and stubbing API responses. You can use .intercept()
command to stub your responses, but you can do so much more! You can change headers on your API calls, dynamically change just parts of your response or your request. It really seems like there’s not much you cannot do with your network calls.
To make these cool new features available to you, you should slowly start to migrate your .route()
commands to .intercept()
. Once you are done, you can completely delete any .server()
command call as this is deprecated too.
If you used .route()
command just for routing and waiting for your API calls, then the migration should be pretty easy for you.
These commands:
Can easily just become these:
For cases like these, you just need to change the name of your commands. But there are some slight differences when you start testing matched API calls.
I often used .wait()
command to check a status, response and/or request body. My assertions often looked like this:
With .intercept()
the yielded API call body is slightly different. The biggest change is that status
is now statusCode
and is part of response
object, and there are no longer requestBody
, responseBody
shorthands. They were probably not widely used, but I’ll miss them. With API call matched by .intercept()
command, the same assertion would look something like this:
With .route()
you could pass your JSON file as a third argument. This would effectively use this JSON as a response of routed request. With .intercept()
you’ll need to rewrite this command. The old route command:
Needs to become:
You can of course still pass an object or array as a response. In that case, you would use body
instead of fixture
:
As you can see in example, you can still change status code and even headers, just as you could with .route()
. Everything you need just needs to be passed to the routeHandler
object.
Migrating your .route()
to .intercept()
is just a first step. Network handling was completely rewritten with v6 and it enables you do much more. I will be exploring the possibilities of this new command on my YouTube channel. In the meantime, if you want to learn more, I recommend reading my older blog) on capabilities of .intercept()
command (which was then called .route2()
).
I also recommend checking out blogs by Gleb Bahmutov, who wrote a summary blog on differences between these commands, made a video about it and again, wrote a blog on how you can use this new command for stubbing GraphQL. That guy is on fire 🔥
If you are on a reading spree, I also recommend reading a great blog by Amir Rustamzadeh that came out with Cypress v6 release.
And don’t forget the documentation.
From time to time I send some useful tips to your inbox and let you know about upcoming events. Sign up if you want to stay in loop.