Skip to content

Commit

Permalink
chore: remove unnecessary await (#6249)
Browse files Browse the repository at this point in the history
  • Loading branch information
sheremet-va committed Jul 31, 2024
1 parent 40dfad8 commit 9b9bdf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vitest/src/node/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ export class Vitest {
if (!projects.has(coreProject)) {
projects.add(coreProject)
}
for await (const project of projects) {
for (const project of projects) {
await project.initializeGlobalSetup()
}
}
Expand Down

0 comments on commit 9b9bdf7

Please sign in to comment.