-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 962 Bytes
/
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
{
"name": "cy-hands-on-find-cypress-specs",
"version": "1.0.0",
"description": "Sample project to demo the usage of the find-cypress-specs lib.",
"scripts": {
"cy:open": "cypress open",
"test": "cypress run",
"test:main:path": "cypress run --spec cypress/integration/ticketbox.spec.js --env grepTags=@main",
"test:happy:path": "cypress run --env grepTags=@happy-path",
"test:unhappy:path": "cypress run --env grepTags=@unhappy-path",
"list:spec:names": "find-cypress-specs --names",
"count:by:tags": "find-cypress-specs --tags"
},
"keywords": [
"Cypress.io",
"Cypress Ambassador",
"Talking About Testing",
"cy.handsOn()",
"Modern Web Testing",
"find-cypress-specs",
"cypress-grep"
],
"author": "Walmyr Filho <[email protected]> (https://walmyr.dev)",
"license": "MIT",
"devDependencies": {
"cypress": "^9.3.1",
"cypress-grep": "^2.13.1",
"find-cypress-specs": "^1.7.0"
}
}