-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·29 lines (29 loc) · 986 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
23
24
25
26
27
28
29
{
"name": "test-academy-example",
"version": "0.1.0",
"main": "wdio.conf.js",
"keywords": [],
"author": "Martino Turturiello <[email protected]>",
"license": "ISC",
"description": "Example of testing project that includes cucumber-js, page object model, webdriverio and allure",
"devDependencies": {
"allure-commandline": "2.8.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.2.0",
"merge": "1.2.1",
"wdio-allure-reporter": "0.8.3",
"wdio-browserstack-service": "0.1.18",
"wdio-cucumber-framework": "1.1.1",
"wdio-cucumber-reporter": "^0.0.2",
"wdio-selenium-standalone-service": "0.0.11",
"webdriverio": "4.14.1"
},
"scripts": {
"test:local": "wdio ./conf/local.conf.js",
"test:ci": "wdio ./conf/ci.conf.js",
"test:ci-multi": "wdio ./conf/ci-multi.conf.js",
"test:report": "allure serve ./report/allure-results"
}
}