mol_regexp 0.0.1678 → 0.0.1680

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_regexp",
3
- "version": "0.0.1678",
3
+ "version": "0.0.1680",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
package/web.test.js CHANGED
@@ -1314,16 +1314,16 @@ var $;
1314
1314
  $mol_assert_unique([1], [2], [3]);
1315
1315
  },
1316
1316
  'two must be alike'() {
1317
- $mol_assert_like([3], [3]);
1317
+ $mol_assert_equal([3], [3]);
1318
1318
  },
1319
1319
  'three must be alike'() {
1320
- $mol_assert_like([3], [3], [3]);
1320
+ $mol_assert_equal([3], [3], [3]);
1321
1321
  },
1322
1322
  'two object must be alike'() {
1323
- $mol_assert_like({ a: 1 }, { a: 1 });
1323
+ $mol_assert_equal({ a: 1 }, { a: 1 });
1324
1324
  },
1325
1325
  'three object must be alike'() {
1326
- $mol_assert_like({ a: 1 }, { a: 1 }, { a: 1 });
1326
+ $mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
1327
1327
  },
1328
1328
  });
1329
1329
  })($ || ($ = {}));