-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 3.55 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "webdriverio-web-mocha-babel-local",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-plugin": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"@wdio/allure-reporter": "^7.26.0",
"@wdio/browserstack-service": "^7.26.0",
"@wdio/cli": "^7.26.0",
"@wdio/devtools-service": "^7.26.0",
"@wdio/local-runner": "^7.26.0",
"@wdio/mocha-framework": "^7.26.0",
"@wdio/selenium-standalone-service": "^7.26.0",
"@wdio/spec-reporter": "^7.26.0",
"eslint-plugin-mocha": "^10.1.0"
},
"scripts": {
"eslint": "eslint .",
"local_chrome": "wdio run ./config/local/wdio.chrome.conf.js",
"local_chrome_login": "wdio run ./config/local/wdio.chrome.conf.js --suite login",
"local_chrome_login2": "wdio run ./config/local/wdio.chrome.conf.js --suite login2",
"allure_local_chrome": "allure serve ./report/chrome/",
"local_edge": "wdio run ./config/local/wdio.edge.conf.js",
"local_edge_login": "wdio run ./config/local/wdio.edge.conf.js --suite login",
"allure_local_edge": "allure serve ./report/edge/",
"local_firefox": "wdio run ./config/local/wdio.firefox.conf.js",
"local_firefox_login": "wdio run ./config/local/wdio.firefox.conf.js --suite login",
"allure_local_firefox": "allure serve ./report/firefox/",
"local_parallel": "wdio run ./config/local/wdio.parallel.conf.js",
"local_parallel_login": "wdio run ./config/local/wdio.parallel.conf.js --suite login",
"allure_local_parallel": "allure serve ./report/parallel/",
"local_device_chrome_android": "OS=android wdio run ./config/device/wdio.chrome.android.conf.js",
"local_device_chrome_android_login": "OS=android wdio run ./config/device/wdio.chrome.android.conf.js --suite login",
"allure_local_device_chrome_android": "allure serve ./report/device/chrome/android/",
"local_device_chrome_ios": "OS=iOS wdio run ./config/device/wdio.chrome.ios.conf.js",
"local_device_chrome_ios_login": "OS=iOS wdio run ./config/device/wdio.chrome.ios.conf.js --suite login",
"allure_local_device_chrome_ios": "allure serve ./report/device/chrome/ios/",
"browserstack_chrome": "wdio run ./config/browserstack/wdio.bs.chrome.conf.js",
"browserstack_chrome_login": "wdio run ./config/browserstack/wdio.bs.chrome.conf.js --suite login",
"allure_browserstack_chrome": "allure serve ./report/browserstack/chrome/",
"browserstack_edge": "wdio run ./config/browserstack/wdio.bs.edge.conf.js",
"browserstack_edge_login": "wdio run ./config/browserstack/wdio.bs.edge.conf.js --suite login",
"browserstack_firefox": "wdio run ./config/browserstack/wdio.bs.firefox.conf.js",
"browserstack_firefox_login": "wdio run ./config/browserstack/wdio.bs.firefox.conf.js --suite login",
"allure_browserstack_firefox": "allure serve ./report/browserstack/firefox/",
"browserstack_parallel": "wdio run ./config/browserstack/wdio.bs.parallel.conf.js",
"allure_browserstack_parallel": "allure serve ./report/browserstack/parallel/",
"repl": "wdio repl chrome"
},
"dependencies": {
"browserstack-local": "^1.5.1",
"chai": "^4.3.7",
"chromedriver": "^107.0.3",
"eslint": "^8.28.0",
"npm-check-updates": "^16.4.1",
"pg": "^8.8.0",
"superagent": "^8.0.3",
"wdio": "^6.0.1",
"webdriverio": "^7.26.0"
}
}