()
| 1341 | it('async child of a non-function component (e.g. a class)', async () => { |
| 1342 | class App extends React.Component { |
| 1343 | async render() { |
| 1344 | const text = await getAsyncText('Hi'); |
| 1345 | return <Text text={text} />; |
| 1346 | } |
| 1347 | } |
| 1348 | |
| 1349 | const root = ReactNoop.createRoot(); |
nothing calls this directly
no test coverage detected