Files
zitadel/e2e/package.json
Max Peintner 434f4f3bdd fix(console): single feature patch (#10476)
# Which Problems Are Solved

This PR fixes an issue where all features where patched, instead of a
single one. This led to instance overrides which were not intended.
With this change, an update is executed whenever a toggle is hit, only
containing the respective feature, not all.

# How the Problems Are Solved

The console application was overriding the feature settings as an entire
request. A toggle change is now only changing the desired and targeted
feature using partial patches.

# Additional Context

Closes #10459

---------

Co-authored-by: Elio Bischof <elio@zitadel.com>
(cherry picked from commit d8518d48f2)
2025-08-25 15:14:47 +02:00

34 lines
1.4 KiB
JSON

{
"name": "zitadel-e2e",
"version": "0.0.0",
"scripts": {
"open": "pnpm exec cypress open",
"test:e2e": "pnpm exec cypress run",
"test:open:golang": "pnpm run open --",
"test:e2e:golang": "pnpm run test:e2e --",
"test:open:golangangular": "CYPRESS_BASE_URL=http://localhost:4200 CYPRESS_BACKEND_URL=http://localhost:8080 pnpm run open --",
"test:e2e:golangangular": "CYPRESS_BASE_URL=http://localhost:4200 CYPRESS_BACKEND_URL=http://localhost:8080 pnpm run test:e2e --",
"test:open:angulargolang": "pnpm run test:open:golangangular --",
"test:e2e:angulargolang": "pnpm run test:e2e:golangangular --",
"test:open:angular": "CYPRESS_BASE_URL=http://localhost:4200 CYPRESS_BACKEND_URL=http://localhost:8080 CYPRESS_WEBHOOK_HANDLER_HOST=host.docker.internal pnpm run open --",
"test:e2e:angular": "CYPRESS_BASE_URL=http://localhost:4200 CYPRESS_BACKEND_URL=http://localhost:8080 CYPRESS_WEBHOOK_HANDLER_HOST=host.docker.internal pnpm run test:e2e --",
"lint": "prettier --check cypress",
"lint:fix": "prettier --write cypress",
"clean": "rm -rf .turbo node_modules"
},
"private": true,
"devDependencies": {
"@types/pg": "^8.11.6",
"cypress-wait-until": "^3.0.2",
"jsonwebtoken": "^9.0.2",
"mochawesome": "^7.1.3",
"pg": "^8.12.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"uuid": "^10.0.0",
"wait-on": "^7.2.0",
"@types/node": "^22.3.0",
"cypress": "^14.5.3"
}
}