forked from Shelex/cypress-allure-plugin-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 1.45 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
{
"name": "cypress-allure-plugin-example",
"version": "1.0.0",
"main": "index.js",
"license": "Apache-2.0",
"scripts": {
"test": "node cypress/scripts/runner.js",
"cy:open": "yarn cypress open --env allure=true --config integrationFolder=cypress/integration/examples,testFiles=**/*.js --browser chrome",
"cy:cucumber:open": "yarn cypress open --env allure=true --config integrationFolder=cypress/integration/cucumber,ignoreTestFiles=*.js,testFiles=**/*.{feature,features} --browser chrome",
"cy:run": "DEBUG=cypress:* yarn cypress run --config video=false,integrationFolder=cypress/integration/examples --env allure=true --browser chrome",
"cy:cucumber:run": "yarn cypress run --config video=false,ignoreTestFiles=*.js,testFiles=**/*.{feature,features} --env allure=true --browser chrome",
"allure:report": "allure generate allure-results --clean -o allure-report",
"allure:clear": "rm -r allure-results/ allure-report cypress/screenshots || true",
"allure:history": "mv -f allure-report/history allure-results/history && rm -r allure-report || true"
},
"devDependencies": {
"@shelex/cypress-allure-plugin": "2.23.0",
"cypress": "6.8.0",
"cypress-cucumber-preprocessor": "2.3.1",
"eslint-plugin-chai-friendly": "0.7.2",
"eslint-plugin-cypress": "^2.11.3"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
}
}