mol_jsx_lib 0.0.1443 → 0.0.1445
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 +5 -5
- package/web.test.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -3448,16 +3448,16 @@ var $;
|
|
|
3448
3448
|
$mol_assert_unique([1], [2], [3]);
|
|
3449
3449
|
},
|
|
3450
3450
|
'two must be alike'() {
|
|
3451
|
-
$
|
|
3451
|
+
$mol_assert_equal([3], [3]);
|
|
3452
3452
|
},
|
|
3453
3453
|
'three must be alike'() {
|
|
3454
|
-
$
|
|
3454
|
+
$mol_assert_equal([3], [3], [3]);
|
|
3455
3455
|
},
|
|
3456
3456
|
'two object must be alike'() {
|
|
3457
|
-
$
|
|
3457
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
3458
3458
|
},
|
|
3459
3459
|
'three object must be alike'() {
|
|
3460
|
-
$
|
|
3460
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
3461
3461
|
},
|
|
3462
3462
|
});
|
|
3463
3463
|
})($ || ($ = {}));
|
|
@@ -4173,7 +4173,7 @@ var $;
|
|
|
4173
4173
|
}
|
|
4174
4174
|
await $mol_wire_async(A).a();
|
|
4175
4175
|
$mol_assert_equal(A.instances.length, 2);
|
|
4176
|
-
$mol_assert_equal(A.instances[0] instanceof A);
|
|
4176
|
+
$mol_assert_equal(A.instances[0] instanceof A, true);
|
|
4177
4177
|
$mol_assert_equal(A.instances[0], A.instances[1]);
|
|
4178
4178
|
}
|
|
4179
4179
|
});
|