-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.86 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "appium-wdio-cypress-demo",
"version": "1.0.0",
"description": "Demo Project of Cypress controlling WDIO with Appium to complement Mobile and FrontEnd automation together",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/a8trejo/appium-wdio-cypress-demo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"homepage": "https://github.com/a8trejo/appium-wdio-cypress-demo#readme",
"dependencies": {
"@wdio/cli": "^7.24.0",
"appium": "^1.22.3",
"cypress": "^10.7.0",
"webdriverio": "^7.24.0"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^12.1.0",
"@bahmutov/cypress-esbuild-preprocessor": "^2.1.3",
"@wdio/local-runner": "^7.24.0",
"@wdio/mocha-framework": "^7.24.0",
"@wdio/spec-reporter": "^7.24.0",
"appium-uiautomator2-driver": "^2.6.0",
"chai": "^4.3.6",
"cypress-multi-reporters": "^1.6.1"
},
"cypress-cucumber-preprocessor": {
"stepDefinitions": [
"cypress/e2e/**/*.{js,ts}",
"cypress/e2e/[filepath]/**/*.{js,ts}",
"cypress/e2e/[filepath]/*.{js,ts}",
"cypress/support/step_definitions/**/*.{js,ts}"
],
"messages": {
"enabled": true,
"output": "cypress/results/reports/cucumber_json/cucumber-messages.ndjson"
},
"json": {
"formatter": "cypress/config/cucumber_json/cucumber-json-formatter",
"enabled": true,
"output": "cypress/results/reports/cucumber_json/cypress-cucumber.json"
}
},
"scripts": {
"mocha-merge": "mochawesome-merge ./cypress/report/mochawesome_reports/*.json -o cypress/report/mochawesome_complete/complete-report.json",
"mocha-marge": "marge cypress/report/mochawesome_complete/complete-report.json -f complete-report -o cypress/report/mochawesome_complete",
"awesome-report": "npm run mocha-merge && npm run mocha-marge"
}
}