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
This commit is contained in:
Igor Minar 2018-12-12 21:21:52 -08:00 committed by Miško Hevery
parent c6ae72987b
commit cba92db6bf

View File

@ -589,18 +589,16 @@ class HiddenModule {
}); });
})); }));
fixmeIvy( it('works with animation', async(() => {
`FW-643: Components with animations throw with "Failed to execute 'setAttribute' on 'Element'`) renderModule(AnimationServerModule, {document: doc}).then(output => {
.it('works with animation', async(() => { expect(output).toContain('Works!');
renderModule(AnimationServerModule, {document: doc}).then(output => { expect(output).toContain('ng-trigger-myAnimation');
expect(output).toContain('Works!'); expect(output).toContain('opacity:1;');
expect(output).toContain('ng-trigger-myAnimation'); expect(output).toContain('transform:translate3d(0 , 0 , 0);');
expect(output).toContain('opacity:1;'); expect(output).toContain('font-weight:bold;');
expect(output).toContain('transform:translate3d(0 , 0 , 0);'); called = true;
expect(output).toContain('font-weight:bold;'); });
called = true; }));
});
}));
it('should handle ViewEncapsulation.Native', async(() => { it('should handle ViewEncapsulation.Native', async(() => {
renderModule(NativeExampleModule, {document: doc}).then(output => { renderModule(NativeExampleModule, {document: doc}).then(output => {