From f366028031cce5440a07159bb87e4bc461c792fc Mon Sep 17 00:00:00 2001 From: Joe Haddad <timer150@gmail.com> Date: Mon, 15 May 2017 13:50:30 -0400 Subject: [PATCH] Fix CI --- tasks/e2e-kitchensink.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/e2e-kitchensink.sh b/tasks/e2e-kitchensink.sh index 9df78a89c..2295615e8 100755 --- a/tasks/e2e-kitchensink.sh +++ b/tasks/e2e-kitchensink.sh @@ -166,7 +166,7 @@ PORT=3001 \ nohup npm start &>$tmp_server_log & while true do - if grep -q 'The app is running at:' $tmp_server_log; then + if grep -q 'You can now view' $tmp_server_log; then break else sleep 1 @@ -230,7 +230,7 @@ PORT=3002 \ nohup npm start &>$tmp_server_log & while true do - if grep -q 'The app is running at:' $tmp_server_log; then + if grep -q 'You can now view' $tmp_server_log; then break else sleep 1 -- GitLab