mol_wire_lib 1.0.198 → 1.0.199

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/node.test.js CHANGED
@@ -2335,7 +2335,7 @@ var $;
2335
2335
  return $mol_jsx("button", { title: props.hint }, target());
2336
2336
  };
2337
2337
  const dom = $mol_jsx(Button, { id: "foo", hint: "click me" }, () => 'hey!');
2338
- $mol_assert_equal(dom.outerHTML, '<button title="click me" id="foo" class="Button">hey!</button>');
2338
+ $mol_assert_equal(dom.outerHTML, '<button id="foo" title="click me" class="Button">hey!</button>');
2339
2339
  },
2340
2340
  'Nested guid generation'() {
2341
2341
  const Foo = () => {