From c34eee4e8e07390faeeacc014f9b4834f1df7b5e Mon Sep 17 00:00:00 2001 From: Olivier Combe Date: Fri, 21 Dec 2018 15:07:33 +0100 Subject: [PATCH] test(ivy): root cause analysis for `@angular/platform-server` (#27800) PR Close #27800 --- .../platform-server/test/integration_spec.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/platform-server/test/integration_spec.ts b/packages/platform-server/test/integration_spec.ts index 2b0a2462f8..c15e0256a9 100644 --- a/packages/platform-server/test/integration_spec.ts +++ b/packages/platform-server/test/integration_spec.ts @@ -617,15 +617,15 @@ class HiddenModule { }); })); - fixmeIvy('unknown').it( - 'should handle false values on attributes', async(() => { - renderModule(FalseAttributesModule, {document: doc}).then(output => { - expect(output).toBe( - '' + - 'Works!'); - called = true; - }); - })); + fixmeIvy('FW-887: JIT: compilation of NgModule') + .it('should handle false values on attributes', async(() => { + renderModule(FalseAttributesModule, {document: doc}).then(output => { + expect(output).toBe( + '' + + 'Works!'); + called = true; + }); + })); it('should handle element property "name"', async(() => { renderModule(NameModule, {document: doc}).then(output => {