mol_plot_all 1.2.614 → 1.2.616
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.deps.json +1 -1
- package/node.js +2 -0
- package/node.js.map +1 -1
- package/node.mjs +2 -0
- package/node.mjs.map +1 -1
- package/node.test.js +8 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
- package/web.js +2 -0
- package/web.js.map +1 -1
- package/web.mjs +2 -0
- package/web.mjs.map +1 -1
- package/web.test.js +6 -1
- package/web.test.js.map +1 -1
package/web.test.js
CHANGED
|
@@ -405,7 +405,7 @@ var $;
|
|
|
405
405
|
$mol_assert_ok($mol_compare_deep(new Uint8Array([0]), new Uint8Array([0])));
|
|
406
406
|
$mol_assert_not($mol_compare_deep(new Uint8Array([0]), new Uint8Array([1])));
|
|
407
407
|
},
|
|
408
|
-
'
|
|
408
|
+
'Serializale'() {
|
|
409
409
|
class User {
|
|
410
410
|
name;
|
|
411
411
|
rand;
|
|
@@ -420,6 +420,11 @@ var $;
|
|
|
420
420
|
$mol_assert_ok($mol_compare_deep(new User('Jin'), new User('Jin')));
|
|
421
421
|
$mol_assert_not($mol_compare_deep(new User('Jin'), new User('John')));
|
|
422
422
|
},
|
|
423
|
+
'Iterable'() {
|
|
424
|
+
$mol_assert_ok($mol_compare_deep(new URLSearchParams({ foo: 'bar' }), new URLSearchParams({ foo: 'bar' })));
|
|
425
|
+
$mol_assert_not($mol_compare_deep(new URLSearchParams({ foo: 'xxx' }), new URLSearchParams({ foo: 'yyy' })));
|
|
426
|
+
$mol_assert_not($mol_compare_deep(new URLSearchParams({ foo: 'xxx', bar: 'yyy' }), new URLSearchParams({ bar: 'yyy', foo: 'xxx' })));
|
|
427
|
+
},
|
|
423
428
|
});
|
|
424
429
|
})($ || ($ = {}));
|
|
425
430
|
//mol/compare/deep/deep.test.tsx
|