mol_wire_dom 0.0.1561 → 0.0.1563
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 +5 -5
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.test.js +5 -5
- package/web.test.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -2833,7 +2833,7 @@ var $;
|
|
|
2833
2833
|
}
|
|
2834
2834
|
await $mol_wire_async(A).a();
|
|
2835
2835
|
$mol_assert_equal(A.instances.length, 2);
|
|
2836
|
-
$mol_assert_equal(A.instances[0] instanceof A);
|
|
2836
|
+
$mol_assert_equal(A.instances[0] instanceof A, true);
|
|
2837
2837
|
$mol_assert_equal(A.instances[0], A.instances[1]);
|
|
2838
2838
|
}
|
|
2839
2839
|
});
|
|
@@ -3654,16 +3654,16 @@ var $;
|
|
|
3654
3654
|
$mol_assert_unique([1], [2], [3]);
|
|
3655
3655
|
},
|
|
3656
3656
|
'two must be alike'() {
|
|
3657
|
-
$
|
|
3657
|
+
$mol_assert_equal([3], [3]);
|
|
3658
3658
|
},
|
|
3659
3659
|
'three must be alike'() {
|
|
3660
|
-
$
|
|
3660
|
+
$mol_assert_equal([3], [3], [3]);
|
|
3661
3661
|
},
|
|
3662
3662
|
'two object must be alike'() {
|
|
3663
|
-
$
|
|
3663
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
3664
3664
|
},
|
|
3665
3665
|
'three object must be alike'() {
|
|
3666
|
-
$
|
|
3666
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
3667
3667
|
},
|
|
3668
3668
|
});
|
|
3669
3669
|
})($ || ($ = {}));
|