Skip to content

Commit

Permalink
Remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
craigbeck committed Jul 9, 2024
1 parent 2acfd62 commit edadda8
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions test/dom/as.mocha.js
Original file line number Diff line number Diff line change
Expand Up @@ -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('<li>A</li>');
Expand Down Expand Up @@ -118,9 +115,7 @@ describe('as', function() {
expect(fragment).html('<ul><li>A</li><li>B</li><li>C</li></ul>');

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);
Expand Down

0 comments on commit edadda8

Please sign in to comment.