zitadel/e2e/package.json
Elio Bischof 35faa1b233
test(e2e): improve error reporting (#4931)
* cleanup

* test(e2e): improve error reporting

* lint

* lint

* better timeout messages

* fix shouldNotExist
2023-01-04 13:38:27 +00:00

25 lines
736 B
JSON

{
"name": "zitadel-e2e",
"version": "0.0.0",
"scripts": {
"open": "npx cypress open",
"e2e": "npx cypress run",
"open:dev": "CYPRESS_BASE_URL=http://localhost:4200 CYPRESS_BACKEND_URL=http://localhost:8080 npm run open --",
"e2e:dev": "CYPRESS_BASE_URL=http://localhost:4200 CYPRESS_BACKEND_URL=http://localhost:8080 npm run e2e --",
"lint": "prettier --check cypress",
"lint:fix": "prettier --write cypress"
},
"private": true,
"dependencies": {
"cypress-wait-until": "^1.7.2",
"mochawesome": "^7.1.3",
"prettier": "^2.7.1",
"typescript": "^4.8.4",
"uuid": "^9.0.0",
"wait-on": "^6.0.1"
},
"devDependencies": {
"@types/node": "^18.8.3",
"cypress": "^10.9.0"
}
}