11 lines
266 B
Bash
Executable file
11 lines
266 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# full script path include his name
|
|
_script="$(readlink -f ${BASH_SOURCE[0]})"
|
|
|
|
# Script location path (dir)
|
|
_base="$(dirname $_script)"
|
|
|
|
cd $_base
|
|
cd ../
|
|
node_modules/jasmine-node/bin/jasmine-node test/server/ --coffee --autotest --captureExceptions
|