attributeChangedCallback 钩子。我想用 chai mocha 测试它,但我需要知道如何在测试钩子时设置参数
attributeChangedCallback(name, oldval, newval) {
if (name==='s') {
if (newval!==null) {
} else {
}
}
super.attributeChangedCallback(name, oldval, newval);
}