commit 17eef92ac4c437627b20f1cc64bafe32e29f6d05
parent 35722ee92d96d84d5be589efb205c26265366d41
Author: Marcel <mtrnord1@gmail.com>
Date: Sat, 13 Jun 2020 12:49:18 +0200
Use other port for webpack because 8000 seems to be taken in the CI
Took 3 minutes
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/web.rs b/tests/web.rs
@@ -41,7 +41,7 @@ async fn test_browser() {
c.goto("http://localhost:8000").await.unwrap();
let url = c.current_url().await.unwrap();
- assert_eq!(url.as_ref(), "http://localhost:8000");
+ assert_eq!(url.as_ref(), "http://localhost:8888");
println!("Select Hostname Field");
c.find(Locator::Css("input#homeserver"))
diff --git a/webpack.config.js b/webpack.config.js
@@ -10,7 +10,7 @@ module.exports = (env, argv) => {
devServer: {
contentBase: distPath,
compress: argv.mode === 'production',
- port: 8000,
+ port: 8888,
historyApiFallback: true
},
entry: './bootstrap.js',