Skip to content

Commit fa5e649

Browse files
authored
Merge pull request #4927 from gulyasgergely902/update-npm-dependencies
Update npm dependencies
2 parents e5028a0 + 80d42a4 commit fa5e649

4 files changed

Lines changed: 3879 additions & 3639 deletions

File tree

web/server/vue-cli/config/webpack.dev.js

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,17 @@ module.exports = merge(common, {
4545
}
4646
]
4747
},
48-
proxy: [{
49-
context: [
50-
...CC_SERVICE_ENDPOINTS.map(endpoint => `**/${endpoint}`),
51-
"/docs/**"
52-
],
53-
target: CC_THRIFT_API_HOST + ':' + CC_THRIFT_API_PORT,
54-
changeOrigin: true,
55-
secure: false
56-
}]
48+
proxy: [
49+
{
50+
context: [
51+
...CC_SERVICE_ENDPOINTS.map(endpoint => `**/${endpoint}`),
52+
"/docs/**"
53+
],
54+
target: CC_THRIFT_API_HOST + ":" + CC_THRIFT_API_PORT,
55+
changeOrigin: true,
56+
secure: false
57+
}
58+
]
5759
},
5860
plugins: [
5961
new DefinePlugin({

web/server/vue-cli/nightwatch.conf.js

Lines changed: 12 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -13,30 +13,13 @@ module.exports = {
1313
launch_url: `http://${host}:${port}`,
1414
screenshots: {
1515
"path" : "e2e/screenshots"
16-
}
17-
},
18-
19-
selenium: {
20-
selenium: {
21-
start_process: true,
22-
port: 4444,
23-
host: "127.0.0.1",
24-
server_path: require("selenium-server").path,
25-
log_path: "e2e/output",
26-
check_process_delay: 5000,
27-
cli_args: {
28-
"webdriver.gecko.driver": require("geckodriver").path,
29-
// "webdriver.chrome.driver": require("chromedriver").path
30-
}
3116
},
32-
3317
webdriver: {
34-
start_process: false
18+
start_process: true
3519
}
3620
},
3721

38-
"selenium.chrome": {
39-
extends: "selenium",
22+
"chrome": {
4023
desiredCapabilities: {
4124
browserName: "chrome",
4225
chromeOptions : {
@@ -46,10 +29,17 @@ module.exports = {
4629
}
4730
},
4831

49-
"selenium.firefox": {
50-
extends: "selenium",
32+
"firefox": {
33+
webdriver: {
34+
start_process: true,
35+
server_path: require("geckodriver").path
36+
},
5137
desiredCapabilities: {
52-
browserName: "firefox"
38+
browserName: "firefox",
39+
"moz:firefoxOptions": {
40+
binary: "/bin/firefox-esr",
41+
args: [ "--headless" ]
42+
}
5343
}
5444
},
5545
}

0 commit comments

Comments
 (0)