From 4b25692a99e23ffd953efc91cfacc6b18013c4e0 Mon Sep 17 00:00:00 2001 From: Lorenz Leutgeb Date: Tue, 17 Mar 2020 15:24:50 +0100 Subject: [PATCH] fix: clarify that we're waiting for HTTP 200 (#245) --- src/bin/start.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/start.js b/src/bin/start.js index ab273260..06fd8f48 100755 --- a/src/bin/start.js +++ b/src/bin/start.js @@ -12,7 +12,7 @@ debug('parsed args: %o', parsed) const { start, test, url } = parsed console.log('starting server using command "%s"', start) -console.log('and when url "%s" is responding', url) +console.log('and when url "%s" is responding with HTTP status code 200', url) console.log('running tests using command "%s"', test) startAndTest({ start, url, test }).catch(e => {