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