b2a083136b
Pinned the browser tests to the latest Playwright version that still works with Node 16. We need Node 16 for a successful build.
13 lines
361 B
Markdown
13 lines
361 B
Markdown
# Browser Tests with Playwright
|
|
|
|
These tests execute Mocha tests from the `spec`-folder in multiple browsers.
|
|
|
|
## Using Docker
|
|
|
|
Execute the following commands in the project root:
|
|
|
|
```bash
|
|
npm install
|
|
npx grunt prepare
|
|
docker run -it --rm --volume $(pwd):/srv/app --workdir /srv/app --ipc=host mcr.microsoft.com/playwright:v1.44.1-jammy npm run test:browser
|
|
``` |