forked from Shelex/cypress-allure-historical-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (22 loc) · 919 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "cypress-allure-historical-example",
"version": "1.0.0",
"main": "index.js",
"license": "Apache-2.0",
"scripts": {
"cy:open": "yarn cypress open --env allure=true --browser chrome",
"cy:run": "yarn cypress run --config video=false --env allure=true --browser chrome",
"allure:report": "allure generate allure-results --clean -o allure-report",
"allure:clear": "rm -r allure-results/ allure-report/latest cypress/screenshots || true",
"allure:history": "mv -f allure-report/latest/history allure-results/history && rm -r allure-report/latest || true"
},
"devDependencies": {
"@shelex/cypress-allure-plugin": "latest",
"cypress": "^4.1.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-cypress": "^2.10.3"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
}
}