mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 21:59:00 +02:00
0ca81de78c
Decaffeinate backend GitOrigin-RevId: 4ca9f94fc809cab6f47cec8254cacaf1bb3806fa
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
|
|
|