()
| 2576 | |
| 2577 | // Helper to complete the leave animation for all leaving menu elements |
| 2578 | const finishLeaveAnimations = () => { |
| 2579 | tickAnimationFrames(1); |
| 2580 | document.querySelectorAll('.example-menu.close').forEach((el) => { |
| 2581 | el.dispatchEvent(new AnimationEvent('animationend', {animationName: 'open'})); |
| 2582 | }); |
| 2583 | tick(); |
| 2584 | }; |
| 2585 | |
| 2586 | // Simulate rapid clicking with CD between each toggle |
| 2587 | for (let i = 0; i < 20; i++) { |
no test coverage detected
searching dependent graphs…