mol_data_all 1.1.360 → 1.1.361
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 +1 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.test.js +1 -1
- package/web.test.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -836,7 +836,7 @@ var $;
|
|
|
836
836
|
return $mol_jsx("button", { title: props.hint }, target());
|
|
837
837
|
};
|
|
838
838
|
const dom = $mol_jsx(Button, { id: "foo", hint: "click me" }, () => 'hey!');
|
|
839
|
-
$mol_assert_equal(dom.outerHTML, '<button title="click me"
|
|
839
|
+
$mol_assert_equal(dom.outerHTML, '<button id="foo" title="click me" class="Button">hey!</button>');
|
|
840
840
|
},
|
|
841
841
|
'Nested guid generation'() {
|
|
842
842
|
const Foo = () => {
|