()
| 2638 | |
| 2639 | // Helper to complete the leave animation for all leaving menu elements |
| 2640 | const finishLeaveAnimations = () => { |
| 2641 | tickAnimationFrames(1); |
| 2642 | document.querySelectorAll('.example-menu.close').forEach((el) => { |
| 2643 | el.dispatchEvent(new AnimationEvent('animationend', {animationName: 'open'})); |
| 2644 | }); |
| 2645 | tick(); |
| 2646 | }; |
| 2647 | |
| 2648 | // Simulate rapid clicking with CD between each toggle |
| 2649 | for (let i = 0; i < 20; i++) { |
no test coverage detected