mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 18:20:09 +02:00
Fix test_unit_app and test_unit_module bin scripts GitOrigin-RevId: 18e67564fab54cd19310f81422ed1a1560c4cf29
10 lines
148 B
Bash
Executable File
10 lines
148 B
Bash
Executable File
#!/bin/bash
|
|
set -e;
|
|
|
|
MOCHA="node_modules/.bin/mocha --exit --recursive --reporter spec"
|
|
MODULE=$1
|
|
|
|
shift
|
|
|
|
$MOCHA "$@" modules/$MODULE/test/unit/src
|