DEV Community

Discussion on: Testing React with Cypress.io

Collapse
 
chihab profile image
Chihab Otmani

When you've got the basics of testing React with Cypress you would probably face some issues regarding:

  • Intercepting fetch requests which is not supported by Cypress out of the box
  • Dealing with authentication providers redirection
  • Continuous integration

I've shared some of these here dev.to/chihab/e2e-tests-with-cypre...