test(ivy): mark unknown binding test modifiedInIvy (#28740)

This commit turns off an unknown binding test that is specific
to the View Engine implementation. In Ivy, we do property validation
at runtime for jit, so this test does not apply.

PR Close #28740
This commit is contained in:
Kara Erickson
2019-02-14 12:00:47 -08:00
committed by Misko Hevery
parent c1094cf46f
commit 911599d9a3

View File

@ -261,7 +261,7 @@ describe('jit source mapping', () => {
}));
fixmeIvy('FW-511: Report template typing errors')
modifiedInIvy('Unknown binding errors have been moved to runtime in Ivy')
.it('should use the right source url in template parse errors', fakeAsync(() => {
const template = '<div>\n <div unknown="{{ctxProp}}"></div>';
@Component({...templateDecorator(template)})