diff options
Diffstat (limited to 'test/config-path.test.js')
-rw-r--r-- | test/config-path.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/config-path.test.js b/test/config-path.test.js index a13e099b3..33e2cf3b7 100644 --- a/test/config-path.test.js +++ b/test/config-path.test.js @@ -12,7 +12,7 @@ ConfigPath('can be passed via --config', async (context) => { process.stdout.setEncoding('utf8'); for await (const chunk of process.stdout) { - if(/Server running at/.test(chunk)) { + if(/Server started/.test(chunk)) { break; } } |