()
| 94 | it('if suspended fiber is pinged in a microtask, retry immediately without unwinding the stack', async () => { |
| 95 | let fulfilled = false; |
| 96 | function Async() { |
| 97 | if (fulfilled) { |
| 98 | return <Text text="Async" />; |
| 99 | } |
| 100 | Scheduler.log('Suspend!'); |
| 101 | throw Promise.resolve().then(() => { |
| 102 | Scheduler.log('Resolve in microtask'); |
| 103 | fulfilled = true; |
| 104 | }); |
| 105 | } |
| 106 | |
| 107 | function App() { |
| 108 | return ( |
no test coverage detected