-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
36 lines (36 loc) · 1.19 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-e-commerce-website",
"version": "1.0.0",
"description": "The goal of this project is to automate the E-Commerce-website",
"main": "index.js",
"scripts": {
"start": "npm run cypress",
"combine:report": "mochawesome-merge ./mochawesome-report/*.json -o index.json",
"generate:report": "marge index.json --reportDir public --assetsDir public/assets --reportPageTitle index.html",
"test": "echo \"Error: no test specified\" && exit 1",
"cypress": "node_modules/.bin/cypress open",
"E2E test buy product": "npm run start -- --spec \"cypress/integration/TC001_E2E/*\""
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"cucumberJson": {
"generate": true,
"outputFolder": "cypress/cucumber-json",
"filePrefix": "",
"fileSuffix": ".cucumber"
}
},
"author": "Abdul Wahab",
"license": "ISC",
"devDependencies": {
"cypress": "^7.6.0",
"mochawesome": "^6.2.2",
"mochawesome-report-generator": "^5.2.0",
"multiple-cucumber-html-reporter": "^1.18.0"
},
"dependencies": {
"@babel/core": "^7.14.3",
"cypress-cucumber-preprocessor": "^4.1.2",
"mochawesome-merge": "^4.2.0"
}
}