File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ describe('watch', () => {
61
61
cli . resetStd ( ) ;
62
62
fs . delete ( './fixtures-test-0/bar.test.ts' ) ;
63
63
await cli . waitForStdout ( 'Duration' ) ;
64
- expect ( cli . stdout ) . toMatch ( 'No test files are re-run.' ) ;
64
+ expect ( cli . stdout ) . toMatch ( 'No test files need re-run.' ) ;
65
65
expect ( cli . stdout ) . toMatch ( 'Test Files 1 passed' ) ;
66
66
67
67
cli . exec . kill ( ) ;
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ export async function runTests(context: Rstest): Promise<void> {
128
128
if ( affectedEntries . length === 0 ) {
129
129
logger . debug (
130
130
color . yellow (
131
- `No test files are re-run in project(${ p . environmentName } ).` ,
131
+ `No test files need re-run in project(${ p . environmentName } ).` ,
132
132
) ,
133
133
) ;
134
134
} else {
@@ -192,7 +192,7 @@ export async function runTests(context: Rstest): Promise<void> {
192
192
if ( results . length === 0 ) {
193
193
if ( command === 'watch' ) {
194
194
if ( mode === 'on-demand' ) {
195
- logger . log ( color . yellow ( 'No test files are re-run.' ) ) ;
195
+ logger . log ( color . yellow ( 'No test files need re-run.' ) ) ;
196
196
} else {
197
197
logger . log ( color . yellow ( 'No test files found.' ) ) ;
198
198
}
You can’t perform that action at this time.
0 commit comments