mol_wire_lib 1.0.1580 → 1.0.1582

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.1580",
3
+ "version": "1.0.1582",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
package/web.test.js CHANGED
@@ -926,16 +926,16 @@ var $;
926
926
  $mol_assert_unique([1], [2], [3]);
927
927
  },
928
928
  'two must be alike'() {
929
- $mol_assert_like([3], [3]);
929
+ $mol_assert_equal([3], [3]);
930
930
  },
931
931
  'three must be alike'() {
932
- $mol_assert_like([3], [3], [3]);
932
+ $mol_assert_equal([3], [3], [3]);
933
933
  },
934
934
  'two object must be alike'() {
935
- $mol_assert_like({ a: 1 }, { a: 1 });
935
+ $mol_assert_equal({ a: 1 }, { a: 1 });
936
936
  },
937
937
  'three object must be alike'() {
938
- $mol_assert_like({ a: 1 }, { a: 1 }, { a: 1 });
938
+ $mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
939
939
  },
940
940
  });
941
941
  })($ || ($ = {}));
@@ -1433,7 +1433,7 @@ var $;
1433
1433
  }
1434
1434
  await $mol_wire_async(A).a();
1435
1435
  $mol_assert_equal(A.instances.length, 2);
1436
- $mol_assert_equal(A.instances[0] instanceof A);
1436
+ $mol_assert_equal(A.instances[0] instanceof A, true);
1437
1437
  $mol_assert_equal(A.instances[0], A.instances[1]);
1438
1438
  }
1439
1439
  });