-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "gits-cypresse2e-tutorials",
"version": "1.0.0",
"description": "automation test suite",
"main": "index.js",
"scripts": {
"pretest":"rm -rf allure-report, allure-results",
"cy:open": "npx cypress open --e2e --browser chrome",
"test": "cypress run --e2e --env allure=true",
"test:local": "cypress_baseUrl=https://localhost-3001-the-internet.herokuapp.com run --e2e --env allure=true",
"test:dev": "cypress_baseUrl=https://dev-the-internet.herokuapp.com run --e2e --env allure=true",
"test:qa": "cypress_baseUrl=https://qa-the-internet.herokuapp.com run --e2e --env allure=true",
"report": "allure generate allure-results --clean -o allure-report && allure open allure-report"
},
"author": "MD Zaman - GITS",
"license": "ISC",
"devDependencies": {
"@shelex/cypress-allure-plugin": "^2.39.1",
"cypress": "^12.12.0"
}
}