mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 01:16:31 -06:00
9a25a03e49
* Add e2e boilerplate for enterprise tests * Remove enterprise symlink file * Add tsconfig to e2e extensions folder and gitignore * Update run-suite to use extensions folder * Remove unnecessary tsconfig file * Update e2e enterprise paths on gitignore * Copy symlinked e2e enterprise files on run-suite * Add cleanup command to run-suite * Improve cleanup and setup for enterprise e2e tests * Update e2e path for enterprise tests on gitignore * Support to run different e2e tests for each license
24 lines
527 B
Bash
Executable File
24 lines
527 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. scripts/grafana-server/variables
|
|
|
|
LICENSE_PATH=""
|
|
|
|
if [ "$1" = "enterprise" ]; then
|
|
if [ "$2" != "dev" ] && [ "$2" != "debug" ]; then
|
|
LICENSE_PATH=$2/license.jwt
|
|
else
|
|
LICENSE_PATH=$3/license.jwt
|
|
fi
|
|
fi
|
|
|
|
if [ "$BASE_URL" != "" ]; then
|
|
echo -e "BASE_URL set, skipping starting server"
|
|
else
|
|
# Start it in the background
|
|
./scripts/grafana-server/start-server $LICENSE_PATH 2>&1 > scripts/grafana-server/server.log &
|
|
./scripts/grafana-server/wait-for-grafana
|
|
fi
|
|
|
|
./e2e/run-suite "$@"
|