2018-01-18 18:42:19 +00:00
|
|
|
#!/usr/bin/env bash
|
2019-12-15 16:44:40 +00:00
|
|
|
while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost:8084/?page_id=4)" != "200" ]];
|
2019-12-15 15:32:26 +00:00
|
|
|
do
|
|
|
|
echo "$(date) - Docker container is still being built";
|
2019-12-15 16:44:40 +00:00
|
|
|
sleep 10;
|
2019-12-15 15:32:26 +00:00
|
|
|
done
|
|
|
|
echo "$(date) - Docker container had been built successfully";
|
2019-12-03 19:56:03 +00:00
|
|
|
npm run test:e2e;
|