()
| 223 | |
| 224 | |
| 225 | async def test_display_should_escape(): |
| 226 | display("<p>hello world</p>") |
| 227 | container = await get_display_container() |
| 228 | assert container[0].innerHTML == "<p>hello world</p>" |
| 229 | assert container.innerText == "<p>hello world</p>" |
| 230 | |
| 231 | |
| 232 | async def test_display_HTML(): |
nothing calls this directly
no test coverage detected