()
| 8275 | |
| 8276 | it('should NOT warn for using generator functions as components', async () => { |
| 8277 | function* Foo() { |
| 8278 | yield <h1 key="1">Hello</h1>; |
| 8279 | yield <h1 key="2">World</h1>; |
| 8280 | } |
| 8281 | |
| 8282 | await act(() => { |
| 8283 | const {pipe} = renderToPipeableStream(<Foo />); |
nothing calls this directly
no test coverage detected