2013-05-31 13:51:07 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2013-06-03 10:36:27 +02:00
|
|
|
# Make sure that the destination directory for logs and reports exists
|
|
|
|
mkdir -p ../../build/log
|
|
|
|
|
2013-05-31 13:51:07 +02:00
|
|
|
mocha --reporter "xunit" --recursive "$@" . > ../../build/log/mocha_results.xml
|
|
|
|
mocha --reporter "cobertura" --recursive "$@" . > ../../build/log/mocha_coverage.xml
|
|
|
|
|
|
|
|
exit 0
|