mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
15 lines
253 B
Bash
Executable File
15 lines
253 B
Bash
Executable File
#!/bin/bash
|
|
set -e;
|
|
|
|
MOCHA="node_modules/.bin/mocha --exit --recursive --reporter spec --require test/unit/bootstrap.js"
|
|
|
|
$MOCHA "$@" test/unit/src
|
|
|
|
for dir in modules/*;
|
|
do
|
|
if [ -d $dir/test/unit/src ]; then
|
|
$MOCHA "$@" $dir/test/unit/src
|
|
fi
|
|
done
|
|
|