mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
8 lines
165 B
Bash
8 lines
165 B
Bash
|
TEST_PATH=$@
|
||
|
|
||
|
if [ $# -eq 0 ]
|
||
|
then
|
||
|
TEST_PATH=./**/tests/**/*.spec.ts
|
||
|
fi
|
||
|
|
||
|
./scripts/runner.sh ./node_modules/.bin/tape $TEST_PATH | ./node_modules/.bin/tap-spec
|