···129129 expect(a.value).to.equal("");
130130 });
131131132132- it.skip("if new tree has value in HTML and old tree does too, set value from new tree", async () => {
132132+ it("if new tree has value in HTML and old tree does too, set value from new tree", async () => {
133133 const a = await fixture(html`<input type="text" value="howdy" />`);
134134 const b = await fixture(html`<input type="text" value="hi" />`);
135135···216216 expect(a.checked).to.equal(false);
217217 });
218218219219- it.skip("if new tree has no checked and old tree has checked mutated to true, set value from new tree", async () => {
219219+ it("if new tree has no checked and old tree has checked mutated to true, set value from new tree", async () => {
220220 const a = await fixture(html`<input type="checkbox" />`);
221221 const b = await fixture(html`<input type="checkbox" />`);
222222 b.checked = true;
···227227 expect(a.checked).to.equal(true);
228228 });
229229230230- it.skip("if new tree has checked=false and old tree has checked mutated to true, set value from new tree", async () => {
230230+ it("if new tree has checked=false and old tree has checked mutated to true, set value from new tree", async () => {
231231 const a = await fixture(html`<input type="checkbox" checked=${false} />`);
232232 const b = await fixture(html`<input type="checkbox" />`);
233233 b.checked = true;