mol_jsx_lib 0.0.1443 → 0.0.1445

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_jsx_lib",
3
- "version": "0.0.1443",
3
+ "version": "0.0.1445",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
package/web.test.js CHANGED
@@ -197,16 +197,16 @@ var $;
197
197
  $mol_assert_unique([1], [2], [3]);
198
198
  },
199
199
  'two must be alike'() {
200
- $mol_assert_like([3], [3]);
200
+ $mol_assert_equal([3], [3]);
201
201
  },
202
202
  'three must be alike'() {
203
- $mol_assert_like([3], [3], [3]);
203
+ $mol_assert_equal([3], [3], [3]);
204
204
  },
205
205
  'two object must be alike'() {
206
- $mol_assert_like({ a: 1 }, { a: 1 });
206
+ $mol_assert_equal({ a: 1 }, { a: 1 });
207
207
  },
208
208
  'three object must be alike'() {
209
- $mol_assert_like({ a: 1 }, { a: 1 }, { a: 1 });
209
+ $mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
210
210
  },
211
211
  });
212
212
  })($ || ($ = {}));
@@ -1275,7 +1275,7 @@ var $;
1275
1275
  }
1276
1276
  await $mol_wire_async(A).a();
1277
1277
  $mol_assert_equal(A.instances.length, 2);
1278
- $mol_assert_equal(A.instances[0] instanceof A);
1278
+ $mol_assert_equal(A.instances[0] instanceof A, true);
1279
1279
  $mol_assert_equal(A.instances[0], A.instances[1]);
1280
1280
  }
1281
1281
  });