mol_data_all 1.1.1626 → 1.1.1628
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 +5 -5
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.test.js +4 -4
- package/web.test.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -2410,7 +2410,7 @@ var $;
|
|
|
2410
2410
|
}
|
|
2411
2411
|
await $mol_wire_async(A).a();
|
|
2412
2412
|
$mol_assert_equal(A.instances.length, 2);
|
|
2413
|
-
$mol_assert_equal(A.instances[0] instanceof A);
|
|
2413
|
+
$mol_assert_equal(A.instances[0] instanceof A, true);
|
|
2414
2414
|
$mol_assert_equal(A.instances[0], A.instances[1]);
|
|
2415
2415
|
}
|
|
2416
2416
|
});
|
|
@@ -3561,16 +3561,16 @@ var $;
|
|
|
3561
3561
|
$mol_assert_unique([1], [2], [3]);
|
|
3562
3562
|
},
|
|
3563
3563
|
'two must be alike'() {
|
|
3564
|
-
$
|
|
3564
|
+
$mol_assert_equal([3], [3]);
|
|
3565
3565
|
},
|
|
3566
3566
|
'three must be alike'() {
|
|
3567
|
-
$
|
|
3567
|
+
$mol_assert_equal([3], [3], [3]);
|
|
3568
3568
|
},
|
|
3569
3569
|
'two object must be alike'() {
|
|
3570
|
-
$
|
|
3570
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
3571
3571
|
},
|
|
3572
3572
|
'three object must be alike'() {
|
|
3573
|
-
$
|
|
3573
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
3574
3574
|
},
|
|
3575
3575
|
});
|
|
3576
3576
|
})($ || ($ = {}));
|