parent
a0840242d7
commit
1a7f92c423
|
@ -817,8 +817,7 @@ const DEFAULT_COMPONENT_ID = '1';
|
|||
});
|
||||
|
||||
describe('host bindings', () => {
|
||||
fixmeIvy('unknown').it(
|
||||
'should trigger a state change animation from state => state on the component host element',
|
||||
it('should trigger a state change animation from state => state on the component host element',
|
||||
fakeAsync(() => {
|
||||
@Component({
|
||||
selector: 'my-cmp',
|
||||
|
@ -850,9 +849,7 @@ 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
|
||||
|
@ -2720,8 +2717,7 @@ const DEFAULT_COMPONENT_ID = '1';
|
|||
expect(elm.innerText.trim()).toEqual('');
|
||||
}));
|
||||
|
||||
fixmeIvy('unknown').it(
|
||||
'should trigger a state change listener for when the animation changes state from void => state on the host element',
|
||||
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',
|
||||
|
|
Loading…
Reference in New Issue