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
1 changed files with 10 additions and 12 deletions

View File

@ -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 => {