-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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-testing",
"version": "1.1.0",
"description": "DSL For Generic Functional testing",
"main": "index.js",
"scripts": {
"test": "cypress run --spec \"**/*.feature\"",
"testGeneric": "cypress run --spec \"**/*.feature\" -e TAGS='@tag-generic'",
"test:all": "cypress run --spec \"**/*.features\"",
"sheets": "node \"sheets/snippet.js\" && cypress run --spec \"**/googleSheetTest.feature\""
},
"repository": {
"name": "@peterszeles/cypress-cucumber-testing",
"type": "git",
"url": "https://github.com/peterszeles/cypress-cucumber-testing.git"
},
"keywords": [
"cypress",
"cucumber",
"testing"
],
"author": "Peter Szeles",
"license": "MIT",
"bugs": {
"url": "https://github.com"
},
"homepage": "",
"dependencies": {
"@testing-library/cypress": "^7.0.3",
"cucumber": "^4.2.1",
"cypress": "^7.0.1",
"cypress-cucumber-preprocessor": "^4.0.1",
"googleapis": "^39.2.0"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"stepDefinitions": "cypress/tests"
}
}