Repository URL to install this package:
|
Version:
1.0.6 ▾
|
#!/bin/bash
[ -z $SLIMERJS ] && SLIMERJS=slimerjs
echo 'Testing '$1
$SLIMERJS ./test/headless-runner.js $1 | tee ./slimerjs.log
# Figure out the exit code ourselves because Gecko does not allow
# SlimerJS to do so for now.
[ -z "`grep '0 failed.' ./slimerjs.log`" ] && ERROR=1
rm ./slimerjs.log
exit $ERROR