summaryrefslogtreecommitdiff
path: root/test/config-port.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/config-port.test.js')
-rw-r--r--test/config-port.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/config-port.test.js b/test/config-port.test.js
index 9b5f7b14c..e2e238b64 100644
--- a/test/config-port.test.js
+++ b/test/config-port.test.js
@@ -17,7 +17,7 @@ ConfigPort('can be specified via --port flag', async (context) => {
process.stdout.setEncoding('utf8');
for await (const chunk of process.stdout) {
- if(/Server running at/.test(chunk)) {
+ if(/Local:/.test(chunk)) {
assert.ok(/:3002/.test(chunk), 'Using the right port');
break;
}