()
| 127 | it('isPending remains true until async action finishes', async () => { |
| 128 | let startTransition; |
| 129 | function App() { |
| 130 | const [isPending, _start] = useTransition(); |
| 131 | startTransition = _start; |
| 132 | return <Text text={'Pending: ' + isPending} />; |
| 133 | } |
| 134 | |
| 135 | const root = ReactNoop.createRoot(); |
| 136 | await act(() => { |
nothing calls this directly
no test coverage detected