I have part of template
<fj-dataTable [value]="memorySlots" emptyMessage="No records found" …
<p-column field="designation" …
When I mistype in value
or memorySlots
or emptyMessage
then Angular catches this error during production build.
When I mistype in designation
then compilation goes ok. Thus I'd like to add unit test testing assignment of properties in template. But this is the grand-child component. How can I achieve this?