File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
packages/vitest/src/node/reporters Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import type { Test } from '@vitest/runner'
22import type { SerializedError } from '@vitest/utils'
33import type { Writable } from 'node:stream'
44import type { Vitest } from '../core'
5+ import type { TestSpecification } from '../test-specification'
56import type { TestRunEndReason } from '../types/reporter'
67import type { TestCase , TestModule } from './reported-tasks'
78import c from 'tinyrainbow'
@@ -36,6 +37,12 @@ export class DotReporter extends BaseReporter {
3637 // Ignore default logging of base reporter
3738 printTestModule ( ) : void { }
3839
40+ onTestRunStart ( _specifications : ReadonlyArray < TestSpecification > ) : void {
41+ super . onTestRunStart ( _specifications )
42+
43+ this . renderer ?. start ( )
44+ }
45+
3946 onWatcherRerun ( files : string [ ] , trigger ?: string ) : void {
4047 this . tests . clear ( )
4148 this . renderer ?. start ( )
You can’t perform that action at this time.
0 commit comments