-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1.02 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
{
"name": "aplazame_checkout",
"version": "1.0.0",
"description": "QA code challenge",
"main": "index.js",
"scripts": {
"cy:open": "cypress open",
"cy:run:checkout:all": "cypress run",
"cy:run:checkout:all:chrome:headless": "cypress run --browser chrome --headless",
"cy:run:checkout:ok": "cypress run --spec ./cypress/integration/checkout.is.ok_spec.ts",
"cy:run:checkout:ko": "cypress run --spec ./cypress/integration/checkout.is.ko_spec.ts",
"cy:run:checkout:pending": "cypress run --spec ./cypress/integration/checkout.is.pending_spec.ts",
"cy:run:checkout:ui": "cypress run --spec ./cypress/integration/checkout.ui_spec.ts"
},
"author": "franjmr",
"license": "ISC",
"devDependencies": {
"cypress": "^6.4.0",
"cypress-file-upload": "^5.0.2",
"cypress-iframe": "^1.0.1",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/franjmr/cypressIframeTesting.git"
}
}