5 lines
115 B
Bash
Executable File
5 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
set -e;
|
|
MOCHA="node_modules/.bin/mocha --exit --recursive --reporter spec --timeout 15000"
|
|
$MOCHA "$@"
|