From a2cd264211e8bfc50ef155b5186008c98cab297a Mon Sep 17 00:00:00 2001 From: Ger Hobbelt Date: Fri, 15 Jun 2018 16:18:14 +0200 Subject: [PATCH] jest binary is a bash shell script, not a nodeJS file. (#8179) [skip ci] --- scripts/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test.sh b/scripts/test.sh index bfc5038a0d..5d4d4f9d25 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -23,4 +23,4 @@ if [ -n "$TEST_ONLY" ]; then jestArgs+=("(packages|codemods)/.*$TEST_ONLY.*/test") fi -$node node_modules/.bin/jest "${jestArgs[@]}" +node_modules/.bin/jest "${jestArgs[@]}"