()
| 373 | |
| 374 | it('supports initialValue argument', async () => { |
| 375 | function App() { |
| 376 | const value = useDeferredValue('Final', 'Initial'); |
| 377 | return <Text text={value} />; |
| 378 | } |
| 379 | |
| 380 | const root = ReactNoop.createRoot(); |
| 381 | await act(async () => { |
nothing calls this directly
no test coverage detected