Open Sulton88Mehron90 opened 1 year ago
The guidelines mention end-to-end testing with Cypress. Make sure to allocate time to write meaningful tests that not only cover the "happy path" but also edge cases and potential error states. sad path as well.
Install cypress as a dev dependency.
npm i -D cypress
Add the following to your package.json
{ "scripts": { "cypress": "cypress open" } }
Then run npm run cypress
run npm run cypress
The guidelines mention end-to-end testing with Cypress. Make sure to allocate time to write meaningful tests that not only cover the "happy path" but also edge cases and potential error states. sad path as well.
Install cypress as a dev dependency.
npm i -D cypress
Add the following to your package.json
Then
run npm run cypress