mol_jsx_lib 0.0.403 → 0.0.404

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/web.test.js CHANGED
@@ -1565,7 +1565,7 @@ var $;
1565
1565
  $mol_assert_equal(title.ownerDocument, doc);
1566
1566
  $mol_assert_equal(doc.documentElement.outerHTML, '<html><body id="foo" class="Title">foo</body></html>');
1567
1567
  title.value('bar');
1568
- await $mol_wire_fiber.sync();
1568
+ $mol_wire_fiber.sync();
1569
1569
  $mol_assert_equal(doc.documentElement.outerHTML, '<html><body id="foo" class="Title">bar</body></html>');
1570
1570
  },
1571
1571
  async 'Nested bound views'($) {
@@ -1596,11 +1596,11 @@ var $;
1596
1596
  const root = $.$mol_jsx_attach(doc, () => $mol_jsx(App, { "$": $, id: "root" }));
1597
1597
  $mol_assert_equal($mol_dom_serialize(doc.documentElement), '<html xmlns="http://www.w3.org/1999/xhtml"><body id="root" class="list App List"></body></html>');
1598
1598
  App.of(root).title('barbar');
1599
- await $mol_wire_fiber.sync();
1599
+ $mol_wire_fiber.sync();
1600
1600
  $mol_assert_equal(Task.of(root.firstElementChild).title(), 'barbar');
1601
1601
  $mol_assert_equal(doc.documentElement.outerHTML, '<html xmlns="http://www.w3.org/1999/xhtml"><body id="root" class="list App List"><h1 id="root/task" class="App_task Task">barbar</h1></body></html>');
1602
1602
  Task.of(root.firstElementChild).title('foofoo');
1603
- await $mol_wire_fiber.sync();
1603
+ $mol_wire_fiber.sync();
1604
1604
  $mol_assert_equal(App.of(root).title(), 'foofoo');
1605
1605
  $mol_assert_equal(doc.documentElement.outerHTML, '<html xmlns="http://www.w3.org/1999/xhtml"><body id="root" class="list App List"><h1 id="root/task" class="App_task Task">foofoo</h1></body></html>');
1606
1606
  },