This directory contains automated end to end tests.
npm install
npx playwright install --with-deps
Start WorkAdventure with:
docker-compose up -d
Wait 2-3 minutes for the environment to start, then:
Start the tests with:
npm run test
Start WorkAdventure with:
docker-compose -f docker-compose.yaml -f docker-compose.e2e.yml up -d --build
Start the tests with:
npm run test-prod-like
End-to-end tests can take a while to run. To run only one test in one browser, use:
npm run test -- [name of the test file] --project=[chromium|firefox|webkit]
To run tests in "headed" mode, only for Chromium, run:
npm run test-headed-chrome -- [name of the test file]