()
| 5350 | // To force performWork to start before resolving AsyncText but before piping we need to wait until |
| 5351 | // after scheduleWork which currently uses setImmediate to delay performWork |
| 5352 | function afterImmediate() { |
| 5353 | return new Promise(resolve => { |
| 5354 | setImmediate(resolve); |
| 5355 | }); |
| 5356 | } |
| 5357 | |
| 5358 | it('only includes separators between adjacent text nodes', async () => { |
| 5359 | function App({name}) { |
no outgoing calls
no test coverage detected