mol_data_all 1.1.440 → 1.1.443

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
@@ -462,7 +462,7 @@ var $;
462
462
  scheduled = false;
463
463
  await $mol_test_run();
464
464
  $$.$mol_test_complete();
465
- }, 0);
465
+ }, 1000);
466
466
  }
467
467
  $_1.$mol_test_schedule = $mol_test_schedule;
468
468
  $_1.$mol_test_mocks.push(context => {
@@ -1126,7 +1126,7 @@ var $;
1126
1126
  if (left instanceof RegExp)
1127
1127
  return left.source === right['source'] && left.flags === right['flags'];
1128
1128
  if (left instanceof Error)
1129
- return left.stack === right['stack'];
1129
+ return left.message === right['message'] && left.stack === right['stack'];
1130
1130
  let left_cache = $.$mol_compare_deep_cache.get(left);
1131
1131
  if (left_cache) {
1132
1132
  const right_cache = left_cache.get(right);