1
0
Fork 0
mirror of synced 2024-07-15 03:05:57 +12:00
budibase/packages/worker/scripts/test.sh

12 lines
295 B
Bash
Raw Normal View History

#!/bin/bash
if [[ -n $CI ]]
then
# --runInBand performs better in ci where resources are limited
echo "jest --coverage --runInBand"
jest --coverage --runInBand
else
# --maxWorkers performs better in development
echo "jest --coverage --maxWorkers=2"
jest --coverage --maxWorkers=2
fi