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 755640d commit c588ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jest-core/src/runJest.ts
Original file line number Diff line number Diff line change
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 c588ed5

Please sign in to comment.