From cba92db6bf095bb8bf3e54f1529f7db5933bc5f2 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Wed, 12 Dec 2018 21:21:52 -0800 Subject: [PATCH] test(ivy): remove stale fixmes from //packages/platform-server/test (#27639) these issues have already been resolved but we forgot to reenable the tests. PR Close #27639 --- .../platform-server/test/integration_spec.ts | 22 +++++++++---------- 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/packages/platform-server/test/integration_spec.ts b/packages/platform-server/test/integration_spec.ts index ffe69f593a..8a4a25d2c2 100644 --- a/packages/platform-server/test/integration_spec.ts +++ b/packages/platform-server/test/integration_spec.ts @@ -589,18 +589,16 @@ class HiddenModule { }); })); - fixmeIvy( - `FW-643: Components with animations throw with "Failed to execute 'setAttribute' on 'Element'`) - .it('works with animation', async(() => { - renderModule(AnimationServerModule, {document: doc}).then(output => { - expect(output).toContain('Works!'); - expect(output).toContain('ng-trigger-myAnimation'); - expect(output).toContain('opacity:1;'); - expect(output).toContain('transform:translate3d(0 , 0 , 0);'); - expect(output).toContain('font-weight:bold;'); - called = true; - }); - })); + it('works with animation', async(() => { + renderModule(AnimationServerModule, {document: doc}).then(output => { + expect(output).toContain('Works!'); + expect(output).toContain('ng-trigger-myAnimation'); + expect(output).toContain('opacity:1;'); + expect(output).toContain('transform:translate3d(0 , 0 , 0);'); + expect(output).toContain('font-weight:bold;'); + called = true; + }); + })); it('should handle ViewEncapsulation.Native', async(() => { renderModule(NativeExampleModule, {document: doc}).then(output => {