We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a908a5 commit 29b099aCopy full SHA for 29b099a
1 file changed
docs/api/commands/intercept.mdx
@@ -71,7 +71,7 @@ type CustomResponse = {
71
cy.intercept<CustomRequest, CustomResponse>(url, (req) => {
72
req.body // .body of request will be of type CustomRequest
73
req.continue((res) => {
74
- res.body // .body of request will be of type CustomResponse
+ res.body // .body of response will be of type CustomResponse
75
})
76
77
```
0 commit comments