Revision ea8549b8c206598622b2ce0deb22a5b749407284 authored by Michael Mandrus on 14 October 2022, 14:27:06 UTC, committed by GitHub on 14 October 2022, 14:27:06 UTC
* initial cut at refactor - need to run more tests

* fix unit tests

* change newly unused function to test helper

* create unit tests for parsing query requests that cover a range of cases

* add some comments

* rename function to avoid dev confusion
1 parent 2ccbb4d
Raw File
start-and-run-suite
#!/bin/bash

. scripts/grafana-server/variables

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

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