File tree 1 file changed +3
-2
lines changed
packages/vitest/src/node/reporters
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -156,16 +156,17 @@ export abstract class BaseReporter implements Reporter {
156
156
const BADGE = c . inverse ( c . bold ( c . blue ( ' RERUN ' ) ) )
157
157
const TRIGGER = trigger ? c . dim ( ` ${ this . relative ( trigger ) } ` ) : ''
158
158
const FILENAME_PATTERN = this . ctx . filenamePattern ? `${ BADGE_PADDING } ${ c . dim ( 'Filename pattern: ' ) } ${ c . blue ( this . ctx . filenamePattern ) } \n` : ''
159
+ const TESTNAME_PATTERN = this . ctx . config . testNamePattern ? `${ BADGE_PADDING } ${ c . dim ( 'Test name pattern: ' ) } ${ c . blue ( String ( this . ctx . config . testNamePattern ) ) } \n` : ''
159
160
160
161
if ( files . length > 1 ) {
161
162
// we need to figure out how to handle rerun all from stdin
162
- this . ctx . logger . clearFullScreen ( `\n${ BADGE } ${ TRIGGER } \n${ FILENAME_PATTERN } ` )
163
+ this . ctx . logger . clearFullScreen ( `\n${ BADGE } ${ TRIGGER } \n${ FILENAME_PATTERN } ${ TESTNAME_PATTERN } ` )
163
164
this . _lastRunCount = 0
164
165
}
165
166
else if ( files . length === 1 ) {
166
167
const rerun = this . _filesInWatchMode . get ( files [ 0 ] ) ?? 1
167
168
this . _lastRunCount = rerun
168
- this . ctx . logger . clearFullScreen ( `\n${ BADGE } ${ TRIGGER } ${ c . blue ( `x${ rerun } ` ) } \n${ FILENAME_PATTERN } ` )
169
+ this . ctx . logger . clearFullScreen ( `\n${ BADGE } ${ TRIGGER } ${ c . blue ( `x${ rerun } ` ) } \n${ FILENAME_PATTERN } ${ TESTNAME_PATTERN } ` )
169
170
}
170
171
171
172
this . _timeStart = new Date ( )
You can’t perform that action at this time.
0 commit comments