(name, options = {}, callback)
| 28 | } |
| 29 | |
| 30 | const observerTest = (name, options = {}, callback) => { |
| 31 | test(name, async () => { |
| 32 | install(options.html) |
| 33 | await callback() |
| 34 | uninstall() |
| 35 | }) |
| 36 | } |
| 37 | |
| 38 | testGroup("MutationObserver", () => { |
| 39 | observerTest("add character", { html: "a" }, async () => { |
no test coverage detected
searching dependent graphs…