@@ -810,14 +810,14 @@ process.on('message', (message) => {
810
810
assert . strictEqual ( stderr , '' ) ;
811
811
assert . deepStrictEqual ( stdout , [
812
812
'no --watch args present' ,
813
- `Completed running ${ inspect ( file ) } . Waiting for file changes before restarting... ` ,
813
+ `Completed running ${ inspect ( file ) } ` ,
814
814
`Restarting ${ inspect ( file ) } ` ,
815
815
'no --watch args present' ,
816
- `Completed running ${ inspect ( file ) } . Waiting for file changes before restarting... ` ,
816
+ `Completed running ${ inspect ( file ) } ` ,
817
817
] ) ;
818
818
} ) ;
819
819
820
- it ( '`--watch-path` args without `=` used alongside `--watch` should not make it into the script' , async ( ) => {
820
+ it ( '`--watch-path` ars without `=` used alongside `--watch` should not make it into the script' , async ( ) => {
821
821
const projectDir = tmpdir . resolve ( 'project-watch-watch-path-args' ) ;
822
822
mkdirSync ( projectDir ) ;
823
823
@@ -835,10 +835,10 @@ process.on('message', (message) => {
835
835
assert . strictEqual ( stderr , '' ) ;
836
836
assert . deepStrictEqual ( stdout , [
837
837
'no cli arg ends with .js' ,
838
- `Completed running ${ inspect ( file ) } . Waiting for file changes before restarting... ` ,
838
+ `Completed running ${ inspect ( file ) } ` ,
839
839
`Restarting ${ inspect ( file ) } ` ,
840
840
'no cli arg ends with .js' ,
841
- `Completed running ${ inspect ( file ) } . Waiting for file changes before restarting... ` ,
841
+ `Completed running ${ inspect ( file ) } ` ,
842
842
] ) ;
843
843
} ) ;
844
844
} ) ;
0 commit comments