Fix Jest call in the release script

Just running jest binary will no longer work
This commit is contained in:
Dan Abramov
2017-11-25 16:13:28 +00:00
committed by GitHub
parent d1cb28c86b
commit f53bd033e7
@@ -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
);