57f95f8c95
Also moves ava config to package.json
15 lines
297 B
Bash
Executable File
15 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
# strict mode http://redsymbol.net/articles/unofficial-bash-strict-mode/
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
nyc=./node_modules/.bin/nyc
|
|
ava=./node_modules/.bin/ava
|
|
|
|
if [ ! -z ${CI:-} ]; then
|
|
$nyc $ava --tap=${CI-false} | tap-xunit > $CIRCLE_TEST_REPORTS/ava/ava.xml
|
|
else
|
|
$nyc $ava
|
|
fi
|
|
|