mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
13 lines
252 B
Plaintext
13 lines
252 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
. e2e/variables
|
||
|
|
|
||
|
|
echo -e "Waiting for grafana-server to finish starting"
|
||
|
|
|
||
|
|
timeout 200 bash -c 'until nc -z $0 $1; do sleep 1; done' localhost $PORT
|
||
|
|
|
||
|
|
echo -e "Starting Cypress scenarios"
|
||
|
|
|
||
|
|
env BASE_URL=http://localhost:$PORT yarn e2e-tests
|
||
|
|
|