···243243 this.pop()
244244 }
245245}
246246+247247+248248+ /*
249249+ // this makes the tests/results render immediately when the page loads,
250250+ // but it's actually /too fast/ and it's hard to tell whether the tests actually ran
251251+252252+ let x = new MutationObserver((events, observer)=>{
253253+ let pt = events.find(e=>e.target.id=='$data')
254254+ observer.disconnect()
255255+ run(pt.target.textContent)
256256+ }).observe(document.body, {
257257+ childList: true,
258258+ subtree: true,
259259+ })*/