We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Array.from
1 parent 06d6207 commit b60149bCopy full SHA for b60149b
packages/vitest/src/node/reporters/summary.ts
@@ -289,7 +289,7 @@ export class SummaryReporter implements Reporter {
289
290
const slowTasks = [
291
testFile.hook,
292
- ...Array.from(testFile.tests.values()),
+ ...testFile.tests.values(),
293
].filter((t): t is SlowTask => t != null && t.visible)
294
295
for (const [index, task] of slowTasks.entries()) {
0 commit comments