diff options
Diffstat (limited to 'packages/astro/test/config-path.test.js')
-rw-r--r-- | packages/astro/test/config-path.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/test/config-path.test.js b/packages/astro/test/config-path.test.js index 33e2cf3b7..5d78e7027 100644 --- a/packages/astro/test/config-path.test.js +++ b/packages/astro/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 started/.test(chunk)) { + if (/Server started/.test(chunk)) { break; } } |