Skip to content

Commit 9b9bdf7

Browse files
authoredJul 31, 2024··
chore: remove unnecessary await (#6249)
1 parent 40dfad8 commit 9b9bdf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/vitest/src/node/core.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ export class Vitest {
650650
if (!projects.has(coreProject)) {
651651
projects.add(coreProject)
652652
}
653-
for await (const project of projects) {
653+
for (const project of projects) {
654654
await project.initializeGlobalSetup()
655655
}
656656
}

0 commit comments

Comments
 (0)
Please sign in to comment.