(message: string)
| 166 | }); |
| 167 | |
| 168 | const waitForPostMessage = async (message: string) => { |
| 169 | WINDOW.postMessage(message, '*'); |
| 170 | await flush(10); |
| 171 | }; |
| 172 | |
| 173 | it('should call `onClose` when receiving `__sentry_reportdialog_closed__` MessageEvent', async () => { |
| 174 | const onClose = vi.fn(); |
no test coverage detected