Skip to content

Commit bc92ab5

Browse files
committed
✅ listen on all interfaces during testing
1 parent 9fa9dc4 commit bc92ab5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def start(self):
9393
if self.socket:
9494
args += ["--socket", self.socket]
9595
else:
96-
args += ["--port", self.port, "--host", "localhost"]
96+
args += ["--port", self.port, "--host", "0.0.0.0"]
9797

9898
args += [self.manifest]
9999

test/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242

4343
# Vue SSR settings
44-
VUE_SSR: VueSSRConfig = {"port": 22634, "host": "localhost"}
44+
VUE_SSR: VueSSRConfig = {"port": 22634}
4545

4646

4747
# Application definition

0 commit comments

Comments
 (0)