mol_wire_lib 1.0.1579 → 1.0.1581
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
|
@@ -3124,7 +3124,7 @@ var $;
|
|
|
3124
3124
|
}
|
|
3125
3125
|
await $mol_wire_async(A).a();
|
|
3126
3126
|
$mol_assert_equal(A.instances.length, 2);
|
|
3127
|
-
$mol_assert_equal(A.instances[0] instanceof A);
|
|
3127
|
+
$mol_assert_equal(A.instances[0] instanceof A, true);
|
|
3128
3128
|
$mol_assert_equal(A.instances[0], A.instances[1]);
|
|
3129
3129
|
}
|
|
3130
3130
|
});
|
|
@@ -4144,16 +4144,16 @@ var $;
|
|
|
4144
4144
|
$mol_assert_unique([1], [2], [3]);
|
|
4145
4145
|
},
|
|
4146
4146
|
'two must be alike'() {
|
|
4147
|
-
$
|
|
4147
|
+
$mol_assert_equal([3], [3]);
|
|
4148
4148
|
},
|
|
4149
4149
|
'three must be alike'() {
|
|
4150
|
-
$
|
|
4150
|
+
$mol_assert_equal([3], [3], [3]);
|
|
4151
4151
|
},
|
|
4152
4152
|
'two object must be alike'() {
|
|
4153
|
-
$
|
|
4153
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
4154
4154
|
},
|
|
4155
4155
|
'three object must be alike'() {
|
|
4156
|
-
$
|
|
4156
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
4157
4157
|
},
|
|
4158
4158
|
});
|
|
4159
4159
|
})($ || ($ = {}));
|