()
| 417 | |
| 418 | describe('asynchronously', () => { |
| 419 | const renderBrokenAsync = async () => { |
| 420 | await act(async () => { |
| 421 | render(<BrokenWidget />, scratch); |
| 422 | }); |
| 423 | }; |
| 424 | |
| 425 | it('should rethrow the exception', async () => { |
| 426 | let err; |
no test coverage detected
searching dependent graphs…