Merge pull request #1826 from overleaf/ta-fix-bin-scripts

Fix test_unit_app and test_unit_module bin scripts

GitOrigin-RevId: 18e67564fab54cd19310f81422ed1a1560c4cf29
This commit is contained in:
nate stemen 2019-06-03 14:17:05 -04:00 committed by sharelatex
parent 113670f864
commit 1a3b21b3f1
2 changed files with 2 additions and 2 deletions

View file

@ -3,4 +3,4 @@ set -e;
MOCHA="node_modules/.bin/mocha --exit --recursive --reporter spec --require test/unit/bootstrap.js"
$MOCHA "$@" test/unit/js
$MOCHA "$@" test/unit/src

View file

@ -6,4 +6,4 @@ MODULE=$1
shift
$MOCHA "$@" modules/$MODULE/test/unit/js
$MOCHA "$@" modules/$MODULE/test/unit/src