mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
51febd7e4e
* add specs that cover the b2b demo * update cypress * test handling manager roles * use shared mocha contexts * use beforeEach instead of before * improve readability * improve application test * remove static waits * remove old awaitDesired * test owned project authorizations * simplify ensure.ts * test granted projects authz * disable prevSubject for shouldNotExist * await non-existence, then expect no error * update dependencies * fix tests from scratch * fix settings tests from scratch * Apply suggestions from code review Co-authored-by: Max Peintner <max@caos.ch> * Implement code review suggestions * use spread operator * settings properties must match * add check settings object * revert spread operator Co-authored-by: Max Peintner <max@caos.ch>
27 lines
768 B
JSON
27 lines
768 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",
|
|
"debug": "^4.3.4",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"mochawesome": "^7.1.3",
|
|
"prettier": "^2.7.1",
|
|
"typescript": "^4.8.4",
|
|
"wait-on": "^6.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.8.3",
|
|
"cypress": "^10.9.0"
|
|
}
|
|
}
|