()
| 547 | |
| 548 | let startTransitionC; |
| 549 | function ActionC() { |
| 550 | const [isPending, start] = useTransition(); |
| 551 | startTransitionC = start; |
| 552 | return <Text text={'Pending C: ' + isPending} />; |
| 553 | } |
| 554 | |
| 555 | const root = ReactNoop.createRoot(); |
| 556 | await act(() => { |
nothing calls this directly
no test coverage detected