test: add cypress test for documents list

This commit is contained in:
Frank Strieter
2022-03-22 21:05:25 +01:00
parent d38bed1334
commit afcb5fe3cf
4 changed files with 286 additions and 13 deletions

View File

@@ -8,8 +8,8 @@
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
"cy:run": "cypress run",
"e2e:ci": "concurrently \"npm run start\" \"wait-on http-get://localhost:4200 && npm run cy:run\" --kill-others --success first"
},
"private": true,
"dependencies": {
@@ -39,17 +39,20 @@
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "latest",
"@angular-builders/jest": "13.0.3",
"@angular-devkit/build-angular": "~13.2.5",
"@angular/cli": "~13.2.5",
"@angular/compiler-cli": "~13.2.4",
"@types/jest": "latest",
"@cypress/schematic": "^1.6.0",
"@types/jest": "27.4.1",
"@types/node": "^17.0.21",
"codelyzer": "^6.0.2",
"concurrently": "7.0.0",
"cypress": "~9.5.2",
"jest": "latest",
"jest": "27.5.1",
"ts-node": "~10.7.0",
"tslint": "~6.1.3",
"typescript": "~4.5.5"
"typescript": "~4.5.5",
"wait-on": "~6.0.1"
}
}