mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-30 04:25:17 -05:00
4 lines
115 B
Bash
Executable file
4 lines
115 B
Bash
Executable file
#!/bin/bash
|
|
set -e;
|
|
MOCHA="node_modules/.bin/mocha --exit --recursive --reporter spec --timeout 15000"
|
|
$MOCHA "$@"
|