-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
35 lines (35 loc) · 1.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "e2e-tests",
"version": "1.0.0",
"description": "DHIS2 E2E testing",
"scripts": {
"cy:open": "cypress open",
"cy:test": "cypress run --headless --browser chrome",
"cy:parallel": "cypress-parallel -t 3 -s cy:test -d cypress/e2e",
"cy:parallel-report": "cypress-parallel -r cypress-multi-reporters -o configFile=reporter-config.json -t 3 -s cy:test -d cypress/e2e",
"allure": "allure generate --clean ./reports/allure-results/ && allure open",
"allure:serve": "allure serve --results ./reports/allure-results",
"lint": "eslint . --fix"
},
"author": "Gintare Vilkelyte <[email protected]>",
"license": "ISC",
"dependencies": {
"@shelex/cypress-allure-plugin": "^2.26.5",
"axios": "^0.27.2",
"chalk": "^4.0.0",
"chrome-remote-interface": "^0.31.2",
"colors": "^1.4.0",
"cypress": "^10.6.0",
"cypress-grep": "^3.0.2",
"cypress-multi-reporters": "^1.6.1",
"cypress-network-idle": "^1.10.0",
"cypress-parallel": "^0.9.1",
"cypress-plugin-tab": "^1.0.5",
"cypress-wait-until": "^1.7.2",
"moment": "^2.29.4"
},
"devDependencies": {
"eslint": "^8.22.0",
"eslint-plugin-cypress": "^2.12.1"
}
}