Revision 4aaf141ddb0617aedc16f3652b0feee0069bc5be authored by Leon Sorokin on 13 May 2021, 07:33:11 UTC, committed by GitHub on 13 May 2021, 07:33:11 UTC
Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
1 parent 6014551
Raw File
start-and-run-suite
#!/bin/bash

. e2e/variables

if [ "$BASE_URL" != "" ]; then
    echo -e "BASE_URL set, skipping starting server"
else
  # Start it in the background
  ./e2e/start-server 2>&1 > e2e/server.log &
  ./e2e/wait-for-grafana
fi

./e2e/run-suite "$@"
back to top