-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 1.3 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
{
"scripts": {
"cypress:open": "cypress open --config-file configs/cypress.config.js",
"cypress:run": "cypress run --config-file configs/cypress.config.js",
"cypress:report": "node cucumber-html-report.js",
"test:chrome": "cypress run --browser chrome --config-file configs/cypress.config.js",
"test:firefox": "cypress run --browser firefox --config-file configs/cypress.config.js",
"test:edge": "cypress run --browser edge --config-file configs/cypress.config.js",
"test:mobile": "cypress run --config-file configs/cypress.config.mobile.js",
"test:login:run": "cypress run --spec cypress/e2e/feature/login.feature --config-file configs/cypress.config.js",
"test:inventory:run": "cypress run --spec cypress/e2e/feature/inventory.feature --config-file configs/cypress.config.js",
"test:checkout:run": "cypress run --spec cypress/e2e/feature/checkout.feature --config-file configs/cypress.config.js",
"test:cart:run": "cypress run --spec cypress/e2e/feature/cart.feature --config-file configs/cypress.config.js"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^20.1.0",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.1",
"cypress": "^13.13.1",
"multiple-cucumber-html-reporter": "^3.7.0"
},
"dependencies": {
"@faker-js/faker": "^8.4.1"
}
}