Skip to content

Commit b73a272

Browse files
committed
eclipse-theiaGH-147: Cleaned up obsolete configuration changes.
Also reverted wdio and selenium version updates. Signed-off-by: Akos Kitta <[email protected]>
1 parent f55d207 commit b73a272

File tree

4 files changed

+9
-15
lines changed

4 files changed

+9
-15
lines changed

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ platform:
1010
install:
1111
- cinst yarn
1212
- ps: npm install --global --production windows-build-tools
13-
- netsh advfirewall firewall add rule name="SeleniumIn" dir=in action=allow protocol=TCP localport=4445
14-
- netsh advfirewall firewall add rule name="SeleniumOut" dir=out action=allow protocol=TCP localport=4445
13+
- netsh advfirewall firewall add rule name="SeleniumIn" dir=in action=allow protocol=TCP localport=4444
14+
- netsh advfirewall firewall add rule name="SeleniumOut" dir=out action=allow protocol=TCP localport=4444
1515

1616
before_build:
1717
- node --version && npm --version && yarn --version && python --version

examples/browser/wdio.conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ exports.config = {
117117
// commands. Instead, they hook themselves up into the test process.
118118
services: ['selenium-standalone'],
119119
seleniumArgs: {
120-
seleniumArgs: ["-port", "4445"],
120+
seleniumArgs: ["-port", "4444"],
121121
javaArgs: ["-Xmx1024m", "-Djna.nosys=true"]
122122
},
123123
//

examples/electron/theia.package.json

+6-7
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,15 @@
2222
},
2323
"devDependencies": {
2424
"@types/chai": "^4.0.1",
25-
"@types/webdriverio": "^4.7.0",
25+
"@types/webdriverio": "^4.8.3",
2626
"chai": "^4.1.0",
27-
"selenium-standalone": "^6.2.0",
27+
"selenium-standalone": "^6.6.0",
2828
"typescript": "^2.4.1",
2929
"ts-node": "^3.2.0",
30-
"wdio-mocha-framework": "^0.5.9",
31-
"wdio-phantomjs-service": "^0.2.2",
32-
"wdio-selenium-standalone-service": "0.0.8",
30+
"wdio-mocha-framework": "^0.5.10",
31+
"wdio-selenium-standalone-service": "0.0.9",
3332
"wdio-spec-reporter": "^0.1.0",
34-
"webdriverio": "^4.6.2",
33+
"webdriverio": "^4.8.0",
3534
"electron-mocha": "^3.5.0"
3635
}
37-
}
36+
}

examples/electron/wdio.conf.js

-5
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,6 @@ exports.config = {
107107
// your test setup with almost no effort. Unlike plugins, they don't add new
108108
// commands. Instead, they hook themselves up into the test process.
109109
services: ['selenium-standalone'],
110-
seleniumArgs: {
111-
javaArgs: [
112-
'-Djna.nosys=true'
113-
]
114-
},
115110

116111
//
117112
// Framework you want to run your specs with.

0 commit comments

Comments
 (0)