8 lines
166 B
Bash
Executable file
8 lines
166 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
output_directory="/tmp/espe-test"
|
|
|
|
tools/build --tests --output-directory=${output_directory}
|
|
cd ${output_directory}
|
|
mocha espe-test.mocha.js
|
|
cd -
|