()
| 2621 | |
| 2622 | // Helper to complete the leave animation for all leaving menu elements |
| 2623 | const finishLeaveAnimations = () => { |
| 2624 | tickAnimationFrames(1); |
| 2625 | document.querySelectorAll('.example-menu.close').forEach((el) => { |
| 2626 | el.dispatchEvent(new AnimationEvent('animationend', {animationName: 'open'})); |
| 2627 | }); |
| 2628 | tick(); |
| 2629 | }; |
| 2630 | |
| 2631 | // Simulate rapid clicking with CD between each toggle |
| 2632 | for (let i = 0; i < 20; i++) { |
no test coverage detected