Revert "test(ivy): re-enable passing animation tests (#27997)"

This reverts commit 097af5ae2b75b6040d22348d75e2923fa6ada8ec.
It was accidentally merged on both master and patch branches when
it should have only been merged on master.
This commit is contained in:
Kara Erickson 2019-01-08 16:19:44 -08:00
parent e1538fdd63
commit 5a7dd73b2c

View File

@ -824,7 +824,8 @@ const DEFAULT_COMPONENT_ID = '1';
});
describe('host bindings', () => {
it('should trigger a state change animation from state => state on the component host element',
fixmeIvy('unknown').it(
'should trigger a state change animation from state => state on the component host element',
fakeAsync(() => {
@Component({
selector: 'my-cmp',
@ -856,7 +857,9 @@ const DEFAULT_COMPONENT_ID = '1';
const data = getLog().pop() !;
expect(data.element).toEqual(fixture.elementRef.nativeElement);
expect(data.keyframes).toEqual([{offset: 0, opacity: '0'}, {offset: 1, opacity: '1'}]);
expect(data.keyframes).toEqual([
{offset: 0, opacity: '0'}, {offset: 1, opacity: '1'}
]);
}));
// nonAnimationRenderer => animationRenderer
@ -2725,7 +2728,8 @@ const DEFAULT_COMPONENT_ID = '1';
expect(elm.innerText.trim()).toEqual('');
}));
it('should trigger a state change listener for when the animation changes state from void => state on the host element',
fixmeIvy('unknown').it(
'should trigger a state change listener for when the animation changes state from void => state on the host element',
fakeAsync(() => {
@Component({
selector: 'my-cmp',