How to Run Acceptance Tests

How to Run Acceptance Tests#

Follow these steps to run the acceptance tests:

  1. Start the backend for acceptance testing

    make acceptance-backend-dev-start
    
  2. Start the frontend for acceptance testing

    make acceptance-frontend-dev-start
    
  3. Open Cypress in the browser. Run the following command to open Cypress and execute the acceptance tests:

    make acceptance-test
    

How to Run Accessibility (a11y) Tests#

Follow these steps to run accessibility tests using Cypress:

  1. Start the backend

    make backend-start
    
  2. Start the frontend

    make acceptance-a11y-frontend-prod-start
    
  3. Run Cypress for accessibility testing

    make acceptance-a11y-test