mol_tree2 1.0.1235 → 1.0.1236

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
@@ -2880,16 +2880,16 @@ var $;
2880
2880
  $mol_assert_unique([1], [2], [3]);
2881
2881
  },
2882
2882
  'two must be alike'() {
2883
- $mol_assert_like([3], [3]);
2883
+ $mol_assert_equal([3], [3]);
2884
2884
  },
2885
2885
  'three must be alike'() {
2886
- $mol_assert_like([3], [3], [3]);
2886
+ $mol_assert_equal([3], [3], [3]);
2887
2887
  },
2888
2888
  'two object must be alike'() {
2889
- $mol_assert_like({ a: 1 }, { a: 1 });
2889
+ $mol_assert_equal({ a: 1 }, { a: 1 });
2890
2890
  },
2891
2891
  'three object must be alike'() {
2892
- $mol_assert_like({ a: 1 }, { a: 1 }, { a: 1 });
2892
+ $mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
2893
2893
  },
2894
2894
  });
2895
2895
  })($ || ($ = {}));
@@ -4212,7 +4212,7 @@ var $;
4212
4212
  }
4213
4213
  await $mol_wire_async(A).a();
4214
4214
  $mol_assert_equal(A.instances.length, 2);
4215
- $mol_assert_equal(A.instances[0] instanceof A);
4215
+ $mol_assert_equal(A.instances[0] instanceof A, true);
4216
4216
  $mol_assert_equal(A.instances[0], A.instances[1]);
4217
4217
  }
4218
4218
  });