icingaweb2/test/js/runtests.sh

7 lines
184 B
Bash
Raw Normal View History

#!/bin/sh
mocha --reporter "xunit" --recursive "$@" . > ../../build/log/mocha_results.xml
mocha --reporter "cobertura" --recursive "$@" . > ../../build/log/mocha_coverage.xml
exit 0