mam 1.11.753 → 1.11.755
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/node.test.js
CHANGED
|
@@ -8056,7 +8056,7 @@ var $;
|
|
|
8056
8056
|
}
|
|
8057
8057
|
await $mol_wire_async(A).a();
|
|
8058
8058
|
$mol_assert_equal(A.instances.length, 2);
|
|
8059
|
-
$mol_assert_equal(A.instances[0] instanceof A);
|
|
8059
|
+
$mol_assert_equal(A.instances[0] instanceof A, true);
|
|
8060
8060
|
$mol_assert_equal(A.instances[0], A.instances[1]);
|
|
8061
8061
|
}
|
|
8062
8062
|
});
|
|
@@ -8932,16 +8932,16 @@ var $;
|
|
|
8932
8932
|
$mol_assert_unique([1], [2], [3]);
|
|
8933
8933
|
},
|
|
8934
8934
|
'two must be alike'() {
|
|
8935
|
-
$
|
|
8935
|
+
$mol_assert_equal([3], [3]);
|
|
8936
8936
|
},
|
|
8937
8937
|
'three must be alike'() {
|
|
8938
|
-
$
|
|
8938
|
+
$mol_assert_equal([3], [3], [3]);
|
|
8939
8939
|
},
|
|
8940
8940
|
'two object must be alike'() {
|
|
8941
|
-
$
|
|
8941
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
8942
8942
|
},
|
|
8943
8943
|
'three object must be alike'() {
|
|
8944
|
-
$
|
|
8944
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
8945
8945
|
},
|
|
8946
8946
|
});
|
|
8947
8947
|
})($ || ($ = {}));
|