babel/scripts/test-cov.sh
2018-03-08 22:15:54 +01:00

11 lines
147 B
Bash
Executable File

#!/bin/bash
set -e
jestArgs="--coverage"
if [ -n "$CI" ]; then
jestArgs="${jestArgs} --maxWorkers=4 --ci"
fi
node_modules/.bin/jest $jestArgs