`/bin/sh` isn't always an alias of `/bin/bash`, so bash-specific syntax broke the scripts.
(like 777a9ae6e4/scripts/_get-test-directories.sh (L7))
7 lines
208 B
Bash
Executable File
7 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
testDirs=`TEST_TYPE=cov scripts/_get-test-directories.sh`
|
|
node_modules/.bin/nyc node_modules/mocha/bin/_mocha --opts test/mocha.opts $testDirs
|
|
node_modules/.bin/nyc report --reporter=json
|