()
| 588 | |
| 589 | |
| 590 | async def flask_coro_background_input(): |
| 591 | async def background(): |
| 592 | await run_asyncio_coroutine(asyncio.sleep(1)) |
| 593 | res = await input('background') |
| 594 | put_markdown(f'`background: {repr(res)}`') |
| 595 | |
| 596 | run_async(background()) |
| 597 | |
| 598 | res = await input('front') |
| 599 | put_markdown(f'`front: {repr(res)}`') |
| 600 | |
| 601 | |
| 602 | def test_input(browser: Chrome, enable_percy=False, action_delay=0.5): |
nothing calls this directly
no test coverage detected
searching dependent graphs…