Sulton88Mehron90 / showcase-project

https://showcase-project-khaki.vercel.app
1 stars 0 forks source link

Testing with Cypress #5

Open Sulton88Mehron90 opened 1 year ago

Sulton88Mehron90 commented 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