(instance)
| 370 | } |
| 371 | |
| 372 | function doClick(instance) { |
| 373 | const path = container.firstChild.querySelector('path'); |
| 374 | |
| 375 | path.dispatchEvent( |
| 376 | new MouseEvent('click', { |
| 377 | bubbles: true, |
| 378 | }), |
| 379 | ); |
| 380 | } |
| 381 | |
| 382 | const onClick1 = jest.fn(); |
| 383 | let instance = await render(onClick1); |