Add in acceptance test script

This commit is contained in:
James Allen 2016-12-08 11:14:27 +00:00
parent 4cff89becc
commit 9cf0eb5540

View file

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