diff --git a/benefit-finder/README.md b/benefit-finder/README.md index 06613a03..2be66bd2 100644 --- a/benefit-finder/README.md +++ b/benefit-finder/README.md @@ -304,12 +304,32 @@ function Value = ({ children }) => (
{children}
) #### **5. Testing** +##### Vitest for unit/DOM testing + We use [Vitest](https://vitest.dev/) for Unit/DOM testing ```sh npm run test ``` +##### Cypress for UI E2E Test + +```bash +npm run cy:run:e2e +``` + +**Description:** +Runs the end-to-end (E2E) tests in the test environment using the Chrome browser. + +```bash +npm run cy:run:prod:links:e2e +``` + +**Description:** +Runs the E2E tests using the production configuration for testing links, with the Chrome browser. + +For more information, refer to the [Cypress Documentation](https://docs.cypress.io). +
#### **6. Components**