@@ -76,7 +76,7 @@ describe('sync-zod2md-setup generator', () => {
7676 await expect ( syncZod2mdSetupGenerator ( tree ) ) . resolves . toStrictEqual ( {
7777 outOfSyncMessage : undefined ,
7878 } ) ;
79- expect ( tree . exists ( zod2mdConfigPath ) ) . toBe ( false ) ;
79+ expect ( tree . exists ( zod2mdConfigPath ) ) . toBeFalse ( ) ;
8080 } ) ;
8181
8282 it ( 'should fail if missing tsconfig file' , async ( ) => {
@@ -88,7 +88,7 @@ describe('sync-zod2md-setup generator', () => {
8888 - ${ projectRoot } ` ,
8989 ) ,
9090 } ) ;
91- expect ( tree . exists ( `${ projectRoot } /zod2md.config.ts` ) ) . toBe ( true ) ;
91+ expect ( tree . exists ( `${ projectRoot } /zod2md.config.ts` ) ) . toBeTrue ( ) ;
9292 } ) ;
9393
9494 it ( 'should fail if missing "zod2md" target in project config' , async ( ) => {
@@ -111,7 +111,7 @@ describe('sync-zod2md-setup generator', () => {
111111 - ${ projectRoot } ` ,
112112 ) ,
113113 } ) ;
114- expect ( tree . exists ( `${ projectRoot } /zod2md.config.ts` ) ) . toBe ( true ) ;
114+ expect ( tree . exists ( `${ projectRoot } /zod2md.config.ts` ) ) . toBeTrue ( ) ;
115115 } ) ;
116116
117117 it ( 'should fail if missing "dependsOn" targets in build target' , async ( ) => {
@@ -131,7 +131,7 @@ describe('sync-zod2md-setup generator', () => {
131131 - libs/test: generate-docs, ts-patch` ,
132132 ) ,
133133 } ) ;
134- expect ( tree . exists ( `${ projectRoot } /zod2md.config.ts` ) ) . toBe ( true ) ;
134+ expect ( tree . exists ( `${ projectRoot } /zod2md.config.ts` ) ) . toBeTrue ( ) ;
135135 } ) ;
136136
137137 it ( 'should pass if zod2md setup is correct' , async ( ) => {
0 commit comments