mol_data_all 1.1.1626 → 1.1.1628

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_data_all",
3
- "version": "1.1.1626",
3
+ "version": "1.1.1628",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
package/web.test.js CHANGED
@@ -1155,16 +1155,16 @@ var $;
1155
1155
  $mol_assert_unique([1], [2], [3]);
1156
1156
  },
1157
1157
  'two must be alike'() {
1158
- $mol_assert_like([3], [3]);
1158
+ $mol_assert_equal([3], [3]);
1159
1159
  },
1160
1160
  'three must be alike'() {
1161
- $mol_assert_like([3], [3], [3]);
1161
+ $mol_assert_equal([3], [3], [3]);
1162
1162
  },
1163
1163
  'two object must be alike'() {
1164
- $mol_assert_like({ a: 1 }, { a: 1 });
1164
+ $mol_assert_equal({ a: 1 }, { a: 1 });
1165
1165
  },
1166
1166
  'three object must be alike'() {
1167
- $mol_assert_like({ a: 1 }, { a: 1 }, { a: 1 });
1167
+ $mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
1168
1168
  },
1169
1169
  });
1170
1170
  })($ || ($ = {}));