[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

chore: remove unnecessery `values()` call for set (#8964)

authored by

Mikhail and committed by
GitHub
(Nov 7, 2025, 11:21 AM +0100) 7ed99cdf 9044d935

+1 -1
+1 -1
packages/vitest/src/node/state.ts
··· 87 87 } 88 88 89 89 getUnhandledErrors(): unknown[] { 90 - return Array.from(this.errorsSet.values()) 90 + return Array.from(this.errorsSet) 91 91 } 92 92 93 93 getPaths(): string[] {