mol_dump_lib 0.0.866 → 0.0.868
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/package.json
CHANGED
package/web.test.js
CHANGED
|
@@ -724,16 +724,16 @@ var $;
|
|
|
724
724
|
$mol_assert_unique([1], [2], [3]);
|
|
725
725
|
},
|
|
726
726
|
'two must be alike'() {
|
|
727
|
-
$
|
|
727
|
+
$mol_assert_equal([3], [3]);
|
|
728
728
|
},
|
|
729
729
|
'three must be alike'() {
|
|
730
|
-
$
|
|
730
|
+
$mol_assert_equal([3], [3], [3]);
|
|
731
731
|
},
|
|
732
732
|
'two object must be alike'() {
|
|
733
|
-
$
|
|
733
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
734
734
|
},
|
|
735
735
|
'three object must be alike'() {
|
|
736
|
-
$
|
|
736
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
737
737
|
},
|
|
738
738
|
});
|
|
739
739
|
})($ || ($ = {}));
|
|
@@ -1156,7 +1156,7 @@ var $;
|
|
|
1156
1156
|
}
|
|
1157
1157
|
await $mol_wire_async(A).a();
|
|
1158
1158
|
$mol_assert_equal(A.instances.length, 2);
|
|
1159
|
-
$mol_assert_equal(A.instances[0] instanceof A);
|
|
1159
|
+
$mol_assert_equal(A.instances[0] instanceof A, true);
|
|
1160
1160
|
$mol_assert_equal(A.instances[0], A.instances[1]);
|
|
1161
1161
|
}
|
|
1162
1162
|
});
|