mol_dump_lib 0.0.867 → 0.0.868

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
@@ -7749,16 +7749,16 @@ var $;
7749
7749
  $mol_assert_unique([1], [2], [3]);
7750
7750
  },
7751
7751
  'two must be alike'() {
7752
- $mol_assert_like([3], [3]);
7752
+ $mol_assert_equal([3], [3]);
7753
7753
  },
7754
7754
  'three must be alike'() {
7755
- $mol_assert_like([3], [3], [3]);
7755
+ $mol_assert_equal([3], [3], [3]);
7756
7756
  },
7757
7757
  'two object must be alike'() {
7758
- $mol_assert_like({ a: 1 }, { a: 1 });
7758
+ $mol_assert_equal({ a: 1 }, { a: 1 });
7759
7759
  },
7760
7760
  'three object must be alike'() {
7761
- $mol_assert_like({ a: 1 }, { a: 1 }, { a: 1 });
7761
+ $mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
7762
7762
  },
7763
7763
  });
7764
7764
  })($ || ($ = {}));
@@ -8468,7 +8468,7 @@ var $;
8468
8468
  }
8469
8469
  await $mol_wire_async(A).a();
8470
8470
  $mol_assert_equal(A.instances.length, 2);
8471
- $mol_assert_equal(A.instances[0] instanceof A);
8471
+ $mol_assert_equal(A.instances[0] instanceof A, true);
8472
8472
  $mol_assert_equal(A.instances[0], A.instances[1]);
8473
8473
  }
8474
8474
  });