mol_db 0.0.1583 → 0.0.1584
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
|
@@ -2552,16 +2552,16 @@ var $;
|
|
|
2552
2552
|
$mol_assert_unique([1], [2], [3]);
|
|
2553
2553
|
},
|
|
2554
2554
|
'two must be alike'() {
|
|
2555
|
-
$
|
|
2555
|
+
$mol_assert_equal([3], [3]);
|
|
2556
2556
|
},
|
|
2557
2557
|
'three must be alike'() {
|
|
2558
|
-
$
|
|
2558
|
+
$mol_assert_equal([3], [3], [3]);
|
|
2559
2559
|
},
|
|
2560
2560
|
'two object must be alike'() {
|
|
2561
|
-
$
|
|
2561
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
2562
2562
|
},
|
|
2563
2563
|
'three object must be alike'() {
|
|
2564
|
-
$
|
|
2564
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
2565
2565
|
},
|
|
2566
2566
|
});
|
|
2567
2567
|
})($ || ($ = {}));
|
|
@@ -3333,7 +3333,7 @@ var $;
|
|
|
3333
3333
|
}
|
|
3334
3334
|
await $mol_wire_async(A).a();
|
|
3335
3335
|
$mol_assert_equal(A.instances.length, 2);
|
|
3336
|
-
$mol_assert_equal(A.instances[0] instanceof A);
|
|
3336
|
+
$mol_assert_equal(A.instances[0] instanceof A, true);
|
|
3337
3337
|
$mol_assert_equal(A.instances[0], A.instances[1]);
|
|
3338
3338
|
}
|
|
3339
3339
|
});
|