(animation: Animation)
| 911 | |
| 912 | const [shortAnimation, longAnimation] = getAnimations(); |
| 913 | const dispatchAnimationEnd = (animation: Animation) => { |
| 914 | const event = new AnimationEvent('animationend', {animationName: 'duplicate-name'}); |
| 915 | Object.defineProperty(event, 'animation', {value: animation}); |
| 916 | paragraph.nativeElement.dispatchEvent(event); |
| 917 | }; |
| 918 | |
| 919 | dispatchAnimationEnd(shortAnimation); |
| 920 | tick(); |
no test coverage detected