7968c4ad7b
* Upgrading playwright to 1.21 Also, locking CI to install 1.21 (just like package.json is using). This way, on the next Playwright release, CI will continue working. * Running npx install playwright from the tests directory so that playwright can install the correct browsers
14 lines
334 B
JSON
14 lines
334 B
JSON
{
|
|
"devDependencies": {
|
|
"@playwright/test": "~1.21.0",
|
|
"@types/dockerode": "^3.3.0",
|
|
"axios": "^0.24.0",
|
|
"dockerode": "^3.3.1",
|
|
"dotenv-cli": "^5.0.0"
|
|
},
|
|
"scripts": {
|
|
"test": "dotenv -e ../.env -- playwright test",
|
|
"test-prod-like": "OVERRIDE_DOCKER_COMPOSE=docker-compose.e2e.yml npm run test"
|
|
}
|
|
}
|