-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.01 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.01 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
{
"name": "teste-cypress",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx npm-run-all alure:clear cy:run allure:generate allure:open",
"cy:run": "cypress run --config video=false --env allure=true",
"allure:generate": "allure generate allure-results",
"allure:open": "allure open allure-report",
"alure:clear": "rm -r allure-results/ allure-report || true",
"cypress:open": "cypress open",
"cypress:run_electron": "cypress run --headless --browser chrome",
"cypress:run_chrome": "cypress run --headless --browser chrome",
"cypress:run_firefox": "cypress run --headless --browser firefox",
"cypress:dashboard": "node_modules/.bin/cypress run cypress run --record --key 28e3c9d0-3430-4f3c-bad1-7145f45634ed"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cypress-xpath": "^1.6.1"
},
"devDependencies": {
"@shelex/cypress-allure-plugin": "^2.3.5",
"cypress": "^6.9.1",
"mocha": "^8.2.1"
}
}