partey_workadventure/tests
dependabot[bot] ea4d367f4f Bump minimist from 1.2.5 to 1.2.6 in /tests
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6.
- [Release notes](https://github.com/substack/minimist/releases)
- [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6)

---
updated-dependencies:
- dependency-name: minimist
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-04-04 15:19:48 +02:00
..
tests Better e2e tests (#1959) 2022-03-11 10:29:42 +01:00
.gitignore Allow audio (#1991) 2022-03-21 16:22:51 +01:00
package-lock.json Bump minimist from 1.2.5 to 1.2.6 in /tests 2022-04-04 15:19:48 +02:00
package.json Upgrading playwright version to latest 2022-03-18 18:32:23 +01:00
playwright.config.ts add playwright and run e2e tests on production like environment 2022-02-18 14:40:20 +01:00
README.md Multi-platform images (#1924) 2022-03-08 11:21:17 +01:00

End-to-end tests

This directory contains automated end to end tests.

Installation

npm install
npx playwright install --with-deps

Run on development environment

Start WorkAdventure with:

docker-compose up -d

Wait 2-3 minutes for the environment to start, then:

Start the tests with:

npm run test

Run on production like environment

Build message types:

cd messages/
yarn run proto-all

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

Run selected tests

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]