mol_regexp 0.0.1678 → 0.0.1679
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
|
@@ -2214,7 +2214,7 @@ var $;
|
|
|
2214
2214
|
}
|
|
2215
2215
|
await $mol_wire_async(A).a();
|
|
2216
2216
|
$mol_assert_equal(A.instances.length, 2);
|
|
2217
|
-
$mol_assert_equal(A.instances[0] instanceof A);
|
|
2217
|
+
$mol_assert_equal(A.instances[0] instanceof A, true);
|
|
2218
2218
|
$mol_assert_equal(A.instances[0], A.instances[1]);
|
|
2219
2219
|
}
|
|
2220
2220
|
});
|
|
@@ -3505,16 +3505,16 @@ var $;
|
|
|
3505
3505
|
$mol_assert_unique([1], [2], [3]);
|
|
3506
3506
|
},
|
|
3507
3507
|
'two must be alike'() {
|
|
3508
|
-
$
|
|
3508
|
+
$mol_assert_equal([3], [3]);
|
|
3509
3509
|
},
|
|
3510
3510
|
'three must be alike'() {
|
|
3511
|
-
$
|
|
3511
|
+
$mol_assert_equal([3], [3], [3]);
|
|
3512
3512
|
},
|
|
3513
3513
|
'two object must be alike'() {
|
|
3514
|
-
$
|
|
3514
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
3515
3515
|
},
|
|
3516
3516
|
'three object must be alike'() {
|
|
3517
|
-
$
|
|
3517
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
3518
3518
|
},
|
|
3519
3519
|
});
|
|
3520
3520
|
})($ || ($ = {}));
|