mol_regexp 0.0.488 → 0.0.491
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 +2 -2
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/test.html +4 -10
- package/web.test.js +2 -2
- package/web.test.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -383,7 +383,7 @@ var $;
|
|
|
383
383
|
scheduled = false;
|
|
384
384
|
await $mol_test_run();
|
|
385
385
|
$$.$mol_test_complete();
|
|
386
|
-
},
|
|
386
|
+
}, 1000);
|
|
387
387
|
}
|
|
388
388
|
$_1.$mol_test_schedule = $mol_test_schedule;
|
|
389
389
|
$_1.$mol_test_mocks.push(context => {
|
|
@@ -1047,7 +1047,7 @@ var $;
|
|
|
1047
1047
|
if (left instanceof RegExp)
|
|
1048
1048
|
return left.source === right['source'] && left.flags === right['flags'];
|
|
1049
1049
|
if (left instanceof Error)
|
|
1050
|
-
return left.stack === right['stack'];
|
|
1050
|
+
return left.message === right['message'] && left.stack === right['stack'];
|
|
1051
1051
|
let left_cache = $.$mol_compare_deep_cache.get(left);
|
|
1052
1052
|
if (left_cache) {
|
|
1053
1053
|
const right_cache = left_cache.get(right);
|