chore: remove unnecessary flag in release script

This commit is contained in:
Evan You 2020-07-01 20:59:11 -04:00
parent f3e9c1b59d
commit 009255ab34

View File

@ -79,7 +79,7 @@ async function main() {
step('\nRunning tests...') step('\nRunning tests...')
if (!skipTests && !isDryRun) { if (!skipTests && !isDryRun) {
await run(bin('jest'), ['--clearCache']) await run(bin('jest'), ['--clearCache'])
await run('yarn', ['test', '--runInBand']) await run('yarn', ['test'])
} else { } else {
console.log(`(skipped)`) console.log(`(skipped)`)
} }