test(ivy): implement tests for template type-checking (#26203)

This commit builds on the NgtscTestEnvironment helper work before and
introduces template_typecheck_spec.ts, which contains compiler tests
for template type-checking.

PR Close #26203
This commit is contained in:
Alex Rickabaugh
2018-09-25 15:44:53 -07:00
committed by Jason Aden
parent 7a78889994
commit 35bf95281f
2 changed files with 174 additions and 0 deletions

View File

@ -39,6 +39,8 @@ export const ContentChild = callablePropDecorator();
export const ContentChildren = callablePropDecorator();
export const HostBinding = callablePropDecorator();
export const HostListener = callablePropDecorator();
export const Input = callablePropDecorator();
export const Output = callablePropDecorator();
export const ViewChild = callablePropDecorator();
export const ViewChildren = callablePropDecorator();