mol_db 0.0.387 → 0.0.390

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
@@ -1010,7 +1010,7 @@ var $;
1010
1010
  scheduled = false;
1011
1011
  await $mol_test_run();
1012
1012
  $$.$mol_test_complete();
1013
- }, 0);
1013
+ }, 1000);
1014
1014
  }
1015
1015
  $_1.$mol_test_schedule = $mol_test_schedule;
1016
1016
  $_1.$mol_test_mocks.push(context => {
@@ -1480,7 +1480,7 @@ var $;
1480
1480
  if (left instanceof RegExp)
1481
1481
  return left.source === right['source'] && left.flags === right['flags'];
1482
1482
  if (left instanceof Error)
1483
- return left.stack === right['stack'];
1483
+ return left.message === right['message'] && left.stack === right['stack'];
1484
1484
  let left_cache = $.$mol_compare_deep_cache.get(left);
1485
1485
  if (left_cache) {
1486
1486
  const right_cache = left_cache.get(right);