mol_jsx_lib 0.0.161 → 0.0.164
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.esm.js +1 -1
- package/node.esm.js.map +1 -1
- package/node.js +1 -1
- package/node.js.map +1 -1
- 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.esm.js +1 -1
- package/web.esm.js.map +1 -1
- package/web.js +1 -1
- package/web.js.map +1 -1
- package/web.test.js +1 -1
- package/web.test.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -1597,7 +1597,7 @@ var $;
|
|
|
1597
1597
|
if (left instanceof RegExp)
|
|
1598
1598
|
return left.source === right['source'] && left.flags === right['flags'];
|
|
1599
1599
|
if (left instanceof Error)
|
|
1600
|
-
return left.stack === right['stack'];
|
|
1600
|
+
return left.message === right['message'] && left.stack === right['stack'];
|
|
1601
1601
|
let left_cache = $.$mol_compare_deep_cache.get(left);
|
|
1602
1602
|
if (left_cache) {
|
|
1603
1603
|
const right_cache = left_cache.get(right);
|
|
@@ -2542,7 +2542,7 @@ var $;
|
|
|
2542
2542
|
scheduled = false;
|
|
2543
2543
|
await $mol_test_run();
|
|
2544
2544
|
$$.$mol_test_complete();
|
|
2545
|
-
},
|
|
2545
|
+
}, 1000);
|
|
2546
2546
|
}
|
|
2547
2547
|
$_1.$mol_test_schedule = $mol_test_schedule;
|
|
2548
2548
|
$_1.$mol_test_mocks.push(context => {
|