You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a route which accepts PUT only which I'd like to call in my Cypress test but it doesn't seem to work when I use cy.visit():
cy.visit({ route: 'my-route', params: { comment: 1 } });
```
I get this error:
```
CypressError: `cy.visit()` was called with an invalid method: `PUT`. Method can only be `GET` or `POST`.
```
The text was updated successfully, but these errors were encountered:
Hi,
I have a route which accepts
PUT
only which I'd like to call in my Cypress test but it doesn't seem to work when I usecy.visit()
:The text was updated successfully, but these errors were encountered: