Create React app:
npx create-react-app NAMEOFYOURAPPTo run your app:
npm startInstall Cypress:
npm i -D cypressNext, we need to add a script to our package.json file to run Cypress:
{
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
// ...
"cypress": "cypress open" /* <----- Add this line */
}
}To run Cypress:
npm run cypressInstall Router:
npm install react-router-domIn index.js, wrap your <App /> component in <BrowserRouter />.
Example import:
import { Routes } from 'react-router-dom'