mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-11 18:44:22 +00:00
abacb6c5aa
* test: fix e2e against console dev server * chore: get rid of network_mode host * explain e2e commands * chore: fix pipelines * fix e2e paths * fix dockerized e2e * chore: map cypress run service ports * simplify localhost * access db via compose service * access db via compose service * fix npm run open:angular and e2e:angular * docs: add empty line * chore: remove unused file * docs: update contrib --------- Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
32 lines
1.2 KiB
JSON
32 lines
1.2 KiB
JSON
{
|
|
"name": "zitadel-e2e",
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"open": "npx cypress open",
|
|
"e2e": "npx cypress run",
|
|
"open:golang": "npm run open --",
|
|
"e2e:golang": "npm run e2e --",
|
|
"open:golangangular": "CYPRESS_BASE_URL=http://localhost:4200 CYPRESS_BACKEND_URL=http://localhost:8080 npm run open --",
|
|
"e2e:golangangular": "CYPRESS_BASE_URL=http://localhost:4200 CYPRESS_BACKEND_URL=http://localhost:8080 npm run e2e --",
|
|
"open:angular": "CYPRESS_BASE_URL=http://localhost:4200 CYPRESS_BACKEND_URL=http://localhost:8080 CYPRESS_WEBHOOK_HANDLER_HOST=host.docker.internal npm run open --",
|
|
"e2e:angular": "CYPRESS_BASE_URL=http://localhost:4200 CYPRESS_BACKEND_URL=http://localhost:8080 CYPRESS_WEBHOOK_HANDLER_HOST=host.docker.internal npm run e2e --",
|
|
"lint": "prettier --check cypress",
|
|
"lint:fix": "prettier --write cypress"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"@types/pg": "^8.6.6",
|
|
"cypress-wait-until": "^1.7.2",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"mochawesome": "^7.1.3",
|
|
"pg": "^8.8.0",
|
|
"prettier": "^2.7.1",
|
|
"typescript": "^4.8.4",
|
|
"uuid": "^9.0.0",
|
|
"wait-on": "^6.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.8.3",
|
|
"cypress": "^12.2.0"
|
|
}
|
|
} |