-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.05 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.05 KB
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
{
"name": "cypress-api",
"version": "1.0.0",
"description": "",
"main": "cypress.config.js",
"scripts": {
"cy:open": "cypress open",
"cy:run": "cypress run && npm run merge-build-report",
"cy:run-first": "cypress run",
"merge-report": "mochawesome-merge \"cypress/results/*.json\" > mochawesome.json",
"build-report": "marge mochawesome.json",
"merge-build-report": "npm run merge-report && npm run build-report",
"clean-report": "rmdir /s /q \"cypress/results/",
"cy:search": "cypress run --spec cypress/e2e/**/GET_Mars_Seats.test.js",
"cy:ui:chrome": "cypress run --browser chrome --headed --spec cypress/e2e/**/searchWithPromotionCode.test.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@badeball/cypress-cucumber-preprocessor": "^15.1.4",
"cy2": "^4.0.6",
"cypress": "^12.7.0",
"marge": "^1.0.1",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.2.2"
},
"devDependencies": {
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.0"
},
"stepDefinitions": "cypress/support/step_definitions/**/*.js"
}