From f53bd033e79994dbda112a091ddbf784a3c30aaf Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Sat, 25 Nov 2017 16:13:28 +0000 Subject: [PATCH] Fix Jest call in the release script Just running jest binary will no longer work --- scripts/release/build-commands/run-automated-tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release/build-commands/run-automated-tests.js b/scripts/release/build-commands/run-automated-tests.js index 7ee1d66057..56a1cb4276 100644 --- a/scripts/release/build-commands/run-automated-tests.js +++ b/scripts/release/build-commands/run-automated-tests.js @@ -27,7 +27,7 @@ module.exports = async ({cwd}) => { 'Running Flow checks' ); await logPromise( - runYarnTask(cwd, 'jest', 'Jest failed'), + runYarnTask(cwd, 'test', 'Jest failed'), 'Running Jest tests', true );