added docker script for acceptance tests

This commit is contained in:
Brian Gough
2017-01-24 12:18:30 +00:00
parent 0530e21246
commit dab92967c8

View File

@@ -0,0 +1,23 @@
#! /usr/bin/env bash
npm rebuild
echo ">> Starting server..."
grunt --no-color &
echo ">> Server started"
sleep 5
echo ">> Running acceptance tests..."
grunt --no-color test:acceptance
_test_exit_code=$?
echo ">> Killing server"
kill %1
echo ">> Done"
exit $_test_exit_code