UNPKG

617 Bapplication/x-shView Raw
1#!/bin/bash -x
2
3welcome() {
4clear
5echo ' _____ _____ _____ _____ _____ _ _ _____ '
6echo '|_ _|| ___|/ ___||_ _||_ _|| \ | || __ \ '
7echo ' | | | |__ \ `--. | | | | | \| || | \/ '
8echo ' | | | __| `--. \ | | | | | . ` || | __ '
9echo ' | | | |___ /\__/ / | | _| |_ | |\ || |_\ \ '
10echo ' \_/ \____/ \____/ \_/ \___/ \_| \_/ \____/ '
11echo
12}
13
14run() {
15 "$PWD"/node_modules/.bin/mocha \
16 -b \
17 --compilers coffee:coffee-script/register \
18 --require should \
19 --reporter spec \
20 --timeout 120000 \
21 --slow 300 \
22 "$@"
23}
24
25## Main
26welcome && run \
27test/test.coffee
28
29