-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "cypress-cucumber",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cypress run --headed --browser chrome",
"test-search-feature": "cypress run --headed --browser chrome --spec 'cypress/integration/**/google.feature'",
"test-actions-feature": "cypress run --headed --browser chrome --spec 'cypress/integration/**/actions.feature'",
"test-tag-google": "./node_modules/.bin/cypress-tags run -e TAGS='not @actions and @google'",
"test-tag-actions": "./node_modules/.bin/cypress-tags run -e TAGS='not @google and @actions'"
},
"author": "saravanan",
"license": "ISC",
"devDependencies": {
"cucumber-html-reporter": "^5.2.0",
"cypress": "^4.7.0",
"cypress-cucumber-preprocessor": "^2.3.1",
"cypress-xpath": "^1.4.0",
"mocha": "^7.2.0",
"typescript": "^3.9.5"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"cucumberJson": {
"generate": true,
"outputFolder": "report",
"filePrefix": "",
"fileSuffix": ".cucumber"
}
},
"dependencies": {
"cucumber": "^6.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/sseenivasan89/Cypress-Cucumber.git"
}
}