mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 02:51:57 +02:00
6 lines
115 B
Bash
Executable File
6 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
set -e;
|
|
MOCHA="node_modules/.bin/mocha --recursive --reporter spec"
|
|
$MOCHA "$@" test/unit_frontend/js
|
|
|