mol_compare_deep 0.0.1417 → 0.0.1418
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
|
@@ -607,16 +607,16 @@ var $;
|
|
|
607
607
|
$mol_assert_unique([1], [2], [3]);
|
|
608
608
|
},
|
|
609
609
|
'two must be alike'() {
|
|
610
|
-
$
|
|
610
|
+
$mol_assert_equal([3], [3]);
|
|
611
611
|
},
|
|
612
612
|
'three must be alike'() {
|
|
613
|
-
$
|
|
613
|
+
$mol_assert_equal([3], [3], [3]);
|
|
614
614
|
},
|
|
615
615
|
'two object must be alike'() {
|
|
616
|
-
$
|
|
616
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
617
617
|
},
|
|
618
618
|
'three object must be alike'() {
|
|
619
|
-
$
|
|
619
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
620
620
|
},
|
|
621
621
|
});
|
|
622
622
|
})($ || ($ = {}));
|
|
@@ -2947,7 +2947,7 @@ var $;
|
|
|
2947
2947
|
}
|
|
2948
2948
|
await $mol_wire_async(A).a();
|
|
2949
2949
|
$mol_assert_equal(A.instances.length, 2);
|
|
2950
|
-
$mol_assert_equal(A.instances[0] instanceof A);
|
|
2950
|
+
$mol_assert_equal(A.instances[0] instanceof A, true);
|
|
2951
2951
|
$mol_assert_equal(A.instances[0], A.instances[1]);
|
|
2952
2952
|
}
|
|
2953
2953
|
});
|