Like setup.
()
| 39 | |
| 40 | |
| 41 | async def teardown(): |
| 42 | """ |
| 43 | Like setup. |
| 44 | """ |
| 45 | container = await get_display_container() |
| 46 | if container: |
| 47 | container.replaceChildren() |
| 48 | target_container = web.page.find("#test-element-container")[0] |
| 49 | target_container.innerHTML = "" |
| 50 | |
| 51 | |
| 52 | async def test_simple_display(): |
nothing calls this directly
no test coverage detected