set -e
AUTOPKG=${AUTOPKGTEST_TMP:-no}
if test $AUTOPKG = no; then
	mocha -R spec
else
	# false*.js files test source files, then are incompatible with
	# autopkgtest
	mocha -R spec `ls test/*.js|grep -v false`
fi
