mol_wire_dom 0.0.1561 → 0.0.1563

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_dom",
3
- "version": "0.0.1561",
3
+ "version": "0.0.1563",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
package/web.test.js CHANGED
@@ -851,16 +851,16 @@ var $;
851
851
  $mol_assert_unique([1], [2], [3]);
852
852
  },
853
853
  'two must be alike'() {
854
- $mol_assert_like([3], [3]);
854
+ $mol_assert_equal([3], [3]);
855
855
  },
856
856
  'three must be alike'() {
857
- $mol_assert_like([3], [3], [3]);
857
+ $mol_assert_equal([3], [3], [3]);
858
858
  },
859
859
  'two object must be alike'() {
860
- $mol_assert_like({ a: 1 }, { a: 1 });
860
+ $mol_assert_equal({ a: 1 }, { a: 1 });
861
861
  },
862
862
  'three object must be alike'() {
863
- $mol_assert_like({ a: 1 }, { a: 1 }, { a: 1 });
863
+ $mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
864
864
  },
865
865
  });
866
866
  })($ || ($ = {}));
@@ -1493,7 +1493,7 @@ var $;
1493
1493
  }
1494
1494
  await $mol_wire_async(A).a();
1495
1495
  $mol_assert_equal(A.instances.length, 2);
1496
- $mol_assert_equal(A.instances[0] instanceof A);
1496
+ $mol_assert_equal(A.instances[0] instanceof A, true);
1497
1497
  $mol_assert_equal(A.instances[0], A.instances[1]);
1498
1498
  }
1499
1499
  });