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:
parent
354f3639bb
commit
37a6d2d033
@ -817,7 +817,8 @@ const DEFAULT_COMPONENT_ID = '1';
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe('host bindings', () => {
|
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(() => {
|
fakeAsync(() => {
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'my-cmp',
|
selector: 'my-cmp',
|
||||||
@ -849,7 +850,9 @@ const DEFAULT_COMPONENT_ID = '1';
|
|||||||
|
|
||||||
const data = getLog().pop() !;
|
const data = getLog().pop() !;
|
||||||
expect(data.element).toEqual(fixture.elementRef.nativeElement);
|
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
|
// nonAnimationRenderer => animationRenderer
|
||||||
@ -2717,7 +2720,8 @@ const DEFAULT_COMPONENT_ID = '1';
|
|||||||
expect(elm.innerText.trim()).toEqual('');
|
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(() => {
|
fakeAsync(() => {
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'my-cmp',
|
selector: 'my-cmp',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user