@@ -544,7 +544,7 @@ runInEachFileSystem(() => {
544544 } ) ;
545545
546546 it ( 'should type check a two-way binding to a generic property' , ( ) => {
547- env . tsconfig ( { strictTemplates : true } ) ;
547+ env . tsconfig ( { strictTemplates : true , _checkTwoWayBoundEvents : true } ) ;
548548 env . write (
549549 'test.ts' ,
550550 `
@@ -582,7 +582,7 @@ runInEachFileSystem(() => {
582582 } ) ;
583583
584584 it ( 'should use the setter type when assigning using a two-way binding to an input with different getter and setter types' , ( ) => {
585- env . tsconfig ( { strictTemplates : true } ) ;
585+ env . tsconfig ( { strictTemplates : true , _checkTwoWayBoundEvents : true } ) ;
586586 env . write (
587587 'test.ts' ,
588588 `
@@ -618,7 +618,7 @@ runInEachFileSystem(() => {
618618 } ) ;
619619
620620 it ( 'should type check a two-way binding to a function value' , ( ) => {
621- env . tsconfig ( { strictTemplates : true } ) ;
621+ env . tsconfig ( { strictTemplates : true , _checkTwoWayBoundEvents : true } ) ;
622622 env . write (
623623 'test.ts' ,
624624 `
@@ -658,7 +658,7 @@ runInEachFileSystem(() => {
658658 } ) ;
659659
660660 it ( 'should type check a two-way binding to input/output pair where the input has a wider type than the output' , ( ) => {
661- env . tsconfig ( { strictTemplates : true } ) ;
661+ env . tsconfig ( { strictTemplates : true , _checkTwoWayBoundEvents : true } ) ;
662662 env . write (
663663 'test.ts' ,
664664 `
@@ -3007,7 +3007,7 @@ runInEachFileSystem(() => {
30073007 } ) ;
30083008
30093009 it ( 'should type check a two-way binding to an input with a transform' , ( ) => {
3010- env . tsconfig ( { strictTemplates : true } ) ;
3010+ env . tsconfig ( { strictTemplates : true , _checkTwoWayBoundEvents : true } ) ;
30113011 env . write (
30123012 'test.ts' ,
30133013 `
0 commit comments