Skip to content

Commit 1cdc272

Browse files
gaearonEthan-Arrowood
authored andcommitted
Fix Jest call in the release script
Just running jest binary will no longer work
1 parent ad1cf97 commit 1cdc272

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/release/build-commands/run-automated-tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module.exports = async ({cwd}) => {
2727
'Running Flow checks'
2828
);
2929
await logPromise(
30-
runYarnTask(cwd, 'jest', 'Jest failed'),
30+
runYarnTask(cwd, 'test', 'Jest failed'),
3131
'Running Jest tests',
3232
true
3333
);

0 commit comments

Comments
 (0)