diff --git a/test/dom/as.mocha.js b/test/dom/as.mocha.js index 21233fd3..e8229366 100644 --- a/test/dom/as.mocha.js +++ b/test/dom/as.mocha.js @@ -63,9 +63,6 @@ describe('as', function() { page.model.remove('_page.items', 1); - // templates.ts#L2342 not processing delete of property until nexttick - // https://github.com/derbyjs/derby/blob/master/src/templates/templates.ts#L2342-L2347 - // unsure if this is a change since these were run in browser await nextTick(); expect(page.nested.map).all.keys('a', 'c'); expect(page.nested.map.a).html('
  • A
  • '); @@ -118,9 +115,7 @@ describe('as', function() { expect(fragment).html(''); page.model.remove('_page.items', 1); - // templates.ts#L2342 not processing delete of property until nexttick - // https://github.com/derbyjs/derby/blob/master/src/templates/templates.ts#L2342-L2347 - // unsure if this is a change since these were run in browser + await nextTick(); expect(page.nested.map).all.keys('a', 'c'); expect(page.nested.map.a).instanceof(Item);