()
| 327 | |
| 328 | |
| 329 | async def coro_background_output(): |
| 330 | put_text("Background output") |
| 331 | set_scope('background') |
| 332 | |
| 333 | async def background(): |
| 334 | for i in range(20): |
| 335 | put_text('%s ' % i, inline=True, scope='background') |
| 336 | |
| 337 | return run_async(background()) |
| 338 | |
| 339 | |
| 340 | def test_output(browser: Chrome, enable_percy=False, action_delay=0.5): |
nothing calls this directly
no test coverage detected
searching dependent graphs…