Display order should be preserved.
()
| 63 | |
| 64 | |
| 65 | async def test_consecutive_display(): |
| 66 | """ |
| 67 | Display order should be preserved. |
| 68 | """ |
| 69 | display("hello 1") |
| 70 | display("hello 2") |
| 71 | container = await get_display_container() |
| 72 | assert ( |
| 73 | len(container.children) == 2 |
| 74 | ), "Expected two children in the display container." |
| 75 | assert container.children[0].innerHTML == "hello 1" |
| 76 | assert container.children[1].innerHTML == "hello 2" |
| 77 | |
| 78 | |
| 79 | def test_target_parameter(): |
nothing calls this directly
no test coverage detected