-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.11 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
{
"name": "cypress-cucumber",
"version": "1.0.0",
"description": "This is a cypress test automation framework using BDD and page object design pattern.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"report": "node cypress/report-generator.js",
"itests:dash": "cypress run --record --key 81610ab4-6bc1-47a1-b07d-769ee92b120f",
"itests:mochawesome": "cypress run --reporter mochawesome",
"e2e:all": "npx cypress-tags run -e TAGS=$npm_package_config_test_tag;yarn report"
},
"config": {
"test_tag": "@E2E"
},
"author": "Prateek Chauhan",
"license": "ISC",
"devDependencies": {
"cypress": "7.3.0",
"cypress-cucumber-preprocessor": "4.1.1",
"cypress-iframe": "1.0.1",
"mocha": "8.4.0",
"mochawesome": "6.2.2",
"typescript": "4.3.2",
"multiple-cucumber-html-reporter": "1.18.0"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"cucumberJson": {
"generate": true,
"outputFolder": "cypress/report/cucumber-json",
"filePrefix": "",
"fileSuffix": ".cucumber"
}
}
}