Browse Source

build: run tests in serial for release

pull/918/head
Evan You 5 years ago
parent
commit
c017073f4c
  1. 2
      scripts/release.js

2
scripts/release.js

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

Loading…
Cancel
Save