File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
packages/host/src/node/cli Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,11 @@ describe("bin", () => {
2323 0 ,
2424 `Expected success (got ${ status } ): ${ stdout } ${ stderr } ` ,
2525 ) ;
26- assert . match ( stdout , / U s a g e : r e a c t - n a t i v e - n o d e - a p i / ) ;
26+ assert . match (
27+ stdout ,
28+ / U s a g e : r e a c t - n a t i v e - n o d e - a p i / ,
29+ `Failed to find expected output (stdout: ${ stdout } stderr: ${ stderr } )` ,
30+ ) ;
2731 } ) ;
2832 } ) ;
2933
@@ -43,7 +47,11 @@ describe("bin", () => {
4347 0 ,
4448 `Expected success (got ${ status } ): ${ stdout } ${ stderr } ` ,
4549 ) ;
46- assert . match ( stdout , / A u t o - l i n k i n g N o d e - A P I m o d u l e s / ) ;
50+ assert . match (
51+ stdout + stderr ,
52+ / A u t o - l i n k i n g N o d e - A P I m o d u l e s / ,
53+ `Failed to find expected output (stdout: ${ stdout } stderr: ${ stderr } )` ,
54+ ) ;
4755 } ) ;
4856 } ) ;
4957} ) ;
You can’t perform that action at this time.
0 commit comments