Showing
- .gitignore 1 addition, 0 deletions.gitignore
- cypress.config.ts 28 additions, 0 deletionscypress.config.ts
- cypress/e2e/auth.cy.ts 133 additions, 0 deletionscypress/e2e/auth.cy.ts
- cypress/e2e/user-journeys-logged-in.cy.ts 102 additions, 0 deletionscypress/e2e/user-journeys-logged-in.cy.ts
- cypress/e2e/user-journeys.cy.ts 116 additions, 0 deletionscypress/e2e/user-journeys.cy.ts
- cypress/fixtures/routes.json 60 additions, 0 deletionscypress/fixtures/routes.json
- cypress/support/commands.ts 128 additions, 0 deletionscypress/support/commands.ts
- cypress/support/e2e.ts 17 additions, 0 deletionscypress/support/e2e.ts
- package-lock.json 4493 additions, 342 deletionspackage-lock.json
- package.json 13 additions, 2 deletionspackage.json
- scripts/extract.paths.ts 58 additions, 0 deletionsscripts/extract.paths.ts
cypress.config.ts
0 → 100644
cypress/e2e/auth.cy.ts
0 → 100644
cypress/e2e/user-journeys-logged-in.cy.ts
0 → 100644
cypress/e2e/user-journeys.cy.ts
0 → 100644
cypress/fixtures/routes.json
0 → 100644
cypress/support/commands.ts
0 → 100644
cypress/support/e2e.ts
0 → 100644
Source diff could not be displayed: it is too large. Options to address this: view the blob.
... | @@ -7,7 +7,12 @@ | ... | @@ -7,7 +7,12 @@ |
"build": "ng build", | "build": "ng build", | ||
"test": "ng test", | "test": "ng test", | ||
"lint": "ng lint", | "lint": "ng lint", | ||
"e2e": "ng e2e" | "e2e": "ng e2e", | ||
"extract-paths": "npx tsx scripts/extract.paths.ts", | |||
"cypress:open": "npm run extract-paths && cypress open", | |||
"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": { | ||
... | @@ -38,6 +43,8 @@ | ... | @@ -38,6 +43,8 @@ |
"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", | |||
"jsoneditor": "^9.10.0", | "jsoneditor": "^9.10.0", | ||
"jwt-decode": "~2.2.0", | "jwt-decode": "~2.2.0", | ||
"ngx-markdown": "~13.1.0", | "ngx-markdown": "~13.1.0", | ||
... | @@ -52,10 +59,12 @@ | ... | @@ -52,10 +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.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", | ||
... | @@ -67,6 +76,8 @@ | ... | @@ -67,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" | |||
} | } | ||
} | } |
scripts/extract.paths.ts
0 → 100644