mol_wire_lib 1.0.790 → 1.0.792
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 +7 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.test.js +7 -1
- package/web.test.js.map +1 -1
package/package.json
CHANGED
package/web.test.js
CHANGED
|
@@ -862,7 +862,7 @@ var $;
|
|
|
862
862
|
if ('outerHTML' in val)
|
|
863
863
|
return val.outerHTML;
|
|
864
864
|
try {
|
|
865
|
-
return JSON.stringify(val);
|
|
865
|
+
return JSON.stringify(val, null, '\t');
|
|
866
866
|
}
|
|
867
867
|
catch (error) {
|
|
868
868
|
console.error(error);
|
|
@@ -909,6 +909,12 @@ var $;
|
|
|
909
909
|
'three must be alike'() {
|
|
910
910
|
$mol_assert_like([3], [3], [3]);
|
|
911
911
|
},
|
|
912
|
+
'two object must be alike'() {
|
|
913
|
+
$mol_assert_like({ a: 1 }, { a: 1 });
|
|
914
|
+
},
|
|
915
|
+
'three object must be alike'() {
|
|
916
|
+
$mol_assert_like({ a: 1 }, { a: 1 }, { a: 1 });
|
|
917
|
+
},
|
|
912
918
|
});
|
|
913
919
|
})($ || ($ = {}));
|
|
914
920
|
//mol/assert/assert.test.ts
|