Revision 05fbfdaa1333dfcbd141cce8af0335432e42eeea authored by Ashley Harrison on 21 June 2022, 08:35:03 UTC, committed by GitHub on 21 June 2022, 08:35:03 UTC
* add unit tests for FolderView

* add basic unit test for Alert component

* prevent flicker of `No results found`
1 parent 9aa440d
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