11 lines
144 B
Bash
Executable File
11 lines
144 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
jestArgs="--coverage"
|
|
|
|
if [ -n "$CI" ]; then
|
|
jestArgs="${jestArgs} --runInBand --ci"
|
|
fi
|
|
|
|
node_modules/.bin/jest $jestArgs
|