mol_mutable 0.0.1061 → 0.0.1062
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
|
@@ -1949,7 +1949,7 @@ var $;
|
|
|
1949
1949
|
}
|
|
1950
1950
|
await $mol_wire_async(A).a();
|
|
1951
1951
|
$mol_assert_equal(A.instances.length, 2);
|
|
1952
|
-
$mol_assert_equal(A.instances[0] instanceof A);
|
|
1952
|
+
$mol_assert_equal(A.instances[0] instanceof A, true);
|
|
1953
1953
|
$mol_assert_equal(A.instances[0], A.instances[1]);
|
|
1954
1954
|
}
|
|
1955
1955
|
});
|
|
@@ -3240,16 +3240,16 @@ var $;
|
|
|
3240
3240
|
$mol_assert_unique([1], [2], [3]);
|
|
3241
3241
|
},
|
|
3242
3242
|
'two must be alike'() {
|
|
3243
|
-
$
|
|
3243
|
+
$mol_assert_equal([3], [3]);
|
|
3244
3244
|
},
|
|
3245
3245
|
'three must be alike'() {
|
|
3246
|
-
$
|
|
3246
|
+
$mol_assert_equal([3], [3], [3]);
|
|
3247
3247
|
},
|
|
3248
3248
|
'two object must be alike'() {
|
|
3249
|
-
$
|
|
3249
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
3250
3250
|
},
|
|
3251
3251
|
'three object must be alike'() {
|
|
3252
|
-
$
|
|
3252
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
3253
3253
|
},
|
|
3254
3254
|
});
|
|
3255
3255
|
})($ || ($ = {}));
|