mol_view_tree2_lib 1.0.34 → 1.0.36

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 CHANGED
@@ -6302,16 +6302,16 @@ var $;
6302
6302
  $mol_assert_unique([1], [2], [3]);
6303
6303
  },
6304
6304
  'two must be alike'() {
6305
- $mol_assert_like([3], [3]);
6305
+ $mol_assert_equal([3], [3]);
6306
6306
  },
6307
6307
  'three must be alike'() {
6308
- $mol_assert_like([3], [3], [3]);
6308
+ $mol_assert_equal([3], [3], [3]);
6309
6309
  },
6310
6310
  'two object must be alike'() {
6311
- $mol_assert_like({ a: 1 }, { a: 1 });
6311
+ $mol_assert_equal({ a: 1 }, { a: 1 });
6312
6312
  },
6313
6313
  'three object must be alike'() {
6314
- $mol_assert_like({ a: 1 }, { a: 1 }, { a: 1 });
6314
+ $mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
6315
6315
  },
6316
6316
  });
6317
6317
  })($ || ($ = {}));
@@ -6735,7 +6735,7 @@ var $;
6735
6735
  }
6736
6736
  await $mol_wire_async(A).a();
6737
6737
  $mol_assert_equal(A.instances.length, 2);
6738
- $mol_assert_equal(A.instances[0] instanceof A);
6738
+ $mol_assert_equal(A.instances[0] instanceof A, true);
6739
6739
  $mol_assert_equal(A.instances[0], A.instances[1]);
6740
6740
  }
6741
6741
  });