From edadda8aa0dfd35338919e233cae1d8039d2c171 Mon Sep 17 00:00:00 2001 From: Craig Beck Date: Tue, 9 Jul 2024 15:57:23 -0700 Subject: [PATCH] Remove comment --- test/dom/as.mocha.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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);