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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_wire_lib",
3
- "version": "1.0.790",
3
+ "version": "1.0.792",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
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