Explicit append flag as false should replace the expected container element.
()
| 157 | |
| 158 | |
| 159 | async def test_append_false(): |
| 160 | """ |
| 161 | Explicit append flag as false should replace the expected container element. |
| 162 | """ |
| 163 | display("item 1", append=False) |
| 164 | display("item 2", append=False) |
| 165 | container = await get_display_container() |
| 166 | assert container.innerText == "item 2" |
| 167 | |
| 168 | |
| 169 | async def test_display_multiple_values(): |
nothing calls this directly
no test coverage detected