Skip to content

Commit

Permalink
chore: remove unnecessary await
Browse files Browse the repository at this point in the history
  • Loading branch information
yesmeck committed Feb 16, 2022
1 parent 199f981 commit e1b4f36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jest-core/src/runJest.ts
Expand Up @@ -285,7 +285,7 @@ export default async function runJest({

const results = await scheduler.scheduleTests(allTests, testWatcher);

await sequencer.cacheResults(allTests, results);
sequencer.cacheResults(allTests, results);

if (hasTests) {
await runGlobalHook({allTests, globalConfig, moduleName: 'globalTeardown'});
Expand Down

0 comments on commit e1b4f36

Please sign in to comment.