preparing merge
parent
11fa4611
No related branches found
No related tags found
This commit is part of merge request !22. Comments created here will be created in the context of that merge request.
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- cypress.config.ts 11 additions, 5 deletionscypress.config.ts
- cypress/e2e/auth.cy.ts 0 additions, 1 deletioncypress/e2e/auth.cy.ts
- cypress/e2e/user-journeys.cy.ts 2 additions, 7 deletionscypress/e2e/user-journeys.cy.ts
- cypress/fixtures/example.json 0 additions, 5 deletionscypress/fixtures/example.json
- cypress/screenshots/auth.cy.ts/user authentication -- should block unauthenticated user from entering a protected route (failed).png 0 additions, 0 deletions...ticated user from entering a protected route (failed).png
- package-lock.json 2125 additions, 182 deletionspackage-lock.json
- package.json 10 additions, 4 deletionspackage.json
cypress/fixtures/example.json
deleted
100644 → 0
133 KiB
This diff is collapsed.
... | @@ -8,9 +8,11 @@ | ... | @@ -8,9 +8,11 @@ |
"test": "ng test", | "test": "ng test", | ||
"lint": "ng lint", | "lint": "ng lint", | ||
"e2e": "ng e2e", | "e2e": "ng e2e", | ||
"extract-paths": "ts-node scripts/extract.paths.ts", | "extract-paths": "npx tsx scripts/extract.paths.ts", | ||
"cypress:open": "npm run extract-paths && cypress open", | "cypress:open": "npm run extract-paths && cypress open", | ||
"cypress:run": "npm run extract-paths && cypress run" | "cypress:run": "npm run extract-paths && cypress run", | ||
"cy:open": "npm run extract-paths && concurrently \"ng serve\" \"wait-on http://localhost:4200 && cypress open\"", | |||
"cy:run": "npm run extract-paths && concurrently \"ng serve\" \"wait-on http://localhost:4200 && cypress run\"" | |||
}, | }, | ||
"private": true, | "private": true, | ||
"dependencies": { | "dependencies": { | ||
... | @@ -41,6 +43,7 @@ | ... | @@ -41,6 +43,7 @@ |
"angular-oauth2-oidc": "~13.0.1", | "angular-oauth2-oidc": "~13.0.1", | ||
"blockly": "git://github.com/google/blockly.git#6.20210701.0", | "blockly": "git://github.com/google/blockly.git#6.20210701.0", | ||
"bootstrap": "~4.6.0", | "bootstrap": "~4.6.0", | ||
"concurrently": "^9.1.2", | |||
"dotenv": "^16.4.7", | "dotenv": "^16.4.7", | ||
"jsoneditor": "^9.10.0", | "jsoneditor": "^9.10.0", | ||
"jwt-decode": "~2.2.0", | "jwt-decode": "~2.2.0", | ||
... | @@ -56,11 +59,12 @@ | ... | @@ -56,11 +59,12 @@ |
"@angular/cli": "~13.3.9", | "@angular/cli": "~13.3.9", | ||
"@angular/compiler-cli": "~13.3.11", | "@angular/compiler-cli": "~13.3.11", | ||
"@angular/language-service": "~13.3.11", | "@angular/language-service": "~13.3.11", | ||
"@cypress/schematic": "^2.4.0", | |||
"@types/jasmine": "~3.3.8", | "@types/jasmine": "~3.3.8", | ||
"@types/jasminewd2": "~2.0.3", | "@types/jasminewd2": "~2.0.3", | ||
"@types/node": "~12.11.1", | "@types/node": "~12.11.1", | ||
"codelyzer": "~6.0.2", | "codelyzer": "~6.0.2", | ||
"cypress": "^14.0.1", | "cypress": "^14.1.0", | ||
"jasmine-core": "~3.5.0", | "jasmine-core": "~3.5.0", | ||
"jasmine-spec-reporter": "~5.0.0", | "jasmine-spec-reporter": "~5.0.0", | ||
"karma": "~6.4.1", | "karma": "~6.4.1", | ||
... | @@ -72,6 +76,8 @@ | ... | @@ -72,6 +76,8 @@ |
"protractor": "~7.0.0", | "protractor": "~7.0.0", | ||
"ts-node": "~7.0.0", | "ts-node": "~7.0.0", | ||
"tslint": "~6.1.0", | "tslint": "~6.1.0", | ||
"typescript": "~4.6.4" | "tsx": "^4.19.3", | ||
"typescript": "~4.6.4", | |||
"wait-on": "^8.0.2" | |||
} | } | ||
} | } |