-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (46 loc) · 2.22 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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "crowdbotics",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:setting": "npx cypress run --spec cypress/integration/api/tests/SettingsPageTest.js",
"test:all": "npx cypress run --spec cypress/integration/api/tests/SettingsPageTest.js,cypress/integration/api/tests/PrdPageTest.js,cypress/integration/api/tests/ConnectorsPageTest.js,cypress/integration/api/tests/CatalogPageTest.js,cypress/integration/api/tests/Taskstest.js,cypress/integration/api/tests/dashboardtest.js",
"test:prd": "npx cypress run --spec cypress/integration/api/tests/PrdPageTest.js",
"test:login": "npx cypress run --spec cypress/integration/api/tests/logintest.js",
"test:settingsa": "npx cypress run --spec cypress/integration/api/tests/*.js --env grep=Settings",
"test:dashboard": "npx cypress run --spec cypress/integration/api/tests/dashboardtest.js",
"test:tasks": "npx cypress run --spec cypress/integration/api/tests/*.js --env grep=Tasks",
"merge-reports": "mochawesome-merge cypress/integration/api/tests/*.js > cypress/reports/mergedReport.json && marge cypress/reports/mergedReport.json -f report -o cypress/reports",
"test": "npx cypress run",
"cy:parallel": "cypress-parallel -d cypress/integration/api/tests/ --threads 13 -s test && npm run report:merge && npm run report:generate",
"report:merge": "mochawesome-merge cypress/reports/mocha/*.json > cypress/reports/mocha/fullReport.json",
"report:generate": "marge cypress/reports/mocha/fullReport.json -f report -o cypress/reports/mocha"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.5.1",
"btoa": "^1.2.1",
"concurrently": "^8.2.2",
"cypress-parallel": "^0.13.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"jrm": "^1.0.1",
"otplib": "^12.0.1"
},
"devDependencies": {
"cypress": "^13.2.0",
"cypress-grep": "^3.0.4",
"cypress-mochawesome-reporter": "^3.5.1",
"cypress-multi-reporters": "^1.6.4",
"fs-extra": "^11.1.1",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.1",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.3.0",
"mochawesome-report-generator": "^6.2.0",
"or": "^0.2.0"
}
}