()
| 487 | // @reactVersion >= 18.0 |
| 488 | it('should display Suspense nodes properly in various states', async () => { |
| 489 | const Loading = () => <div>Loading...</div>; |
| 490 | const never = new Promise(() => {}); |
| 491 | const SuspendingComponent = () => { |
| 492 | readValue(never); |
| 493 | }; |
no outgoing calls
no test coverage detected