Force mocha to exit after tests run

This commit is contained in:
Alasdair Smith 2018-02-26 15:30:56 +00:00
parent 46ac74a160
commit bd7e4908a2

View file

@ -1,4 +1,4 @@
#!/bin/bash
set -e;
MOCHA="node_modules/.bin/mocha --recursive --reporter spec --timeout 15000"
MOCHA="node_modules/.bin/mocha --exit --recursive --reporter spec --timeout 15000"
$MOCHA "$@"