mol_key 0.0.1400 → 0.0.1402
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 +4 -4
- package/web.test.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -530,16 +530,16 @@ var $;
|
|
|
530
530
|
$mol_assert_unique([1], [2], [3]);
|
|
531
531
|
},
|
|
532
532
|
'two must be alike'() {
|
|
533
|
-
$
|
|
533
|
+
$mol_assert_equal([3], [3]);
|
|
534
534
|
},
|
|
535
535
|
'three must be alike'() {
|
|
536
|
-
$
|
|
536
|
+
$mol_assert_equal([3], [3], [3]);
|
|
537
537
|
},
|
|
538
538
|
'two object must be alike'() {
|
|
539
|
-
$
|
|
539
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
540
540
|
},
|
|
541
541
|
'three object must be alike'() {
|
|
542
|
-
$
|
|
542
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
543
543
|
},
|
|
544
544
|
});
|
|
545
545
|
})($ || ($ = {}));
|
|
@@ -2855,7 +2855,7 @@ var $;
|
|
|
2855
2855
|
}
|
|
2856
2856
|
await $mol_wire_async(A).a();
|
|
2857
2857
|
$mol_assert_equal(A.instances.length, 2);
|
|
2858
|
-
$mol_assert_equal(A.instances[0] instanceof A);
|
|
2858
|
+
$mol_assert_equal(A.instances[0] instanceof A, true);
|
|
2859
2859
|
$mol_assert_equal(A.instances[0], A.instances[1]);
|
|
2860
2860
|
}
|
|
2861
2861
|
});
|