From 911599d9a325625fa515595c49fb801ea41efec2 Mon Sep 17 00:00:00 2001 From: Kara Erickson Date: Thu, 14 Feb 2019 12:00:47 -0800 Subject: [PATCH] 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 --- .../core/test/linker/source_map_integration_node_only_spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/test/linker/source_map_integration_node_only_spec.ts b/packages/core/test/linker/source_map_integration_node_only_spec.ts index 1ea8e36f624..09ea288acee 100644 --- a/packages/core/test/linker/source_map_integration_node_only_spec.ts +++ b/packages/core/test/linker/source_map_integration_node_only_spec.ts @@ -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 = '
\n
'; @Component({...templateDecorator(template)})