mol_crypto_lib 0.1.1658 → 0.1.1659
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/package.json
CHANGED
package/web.test.js
CHANGED
|
@@ -1275,16 +1275,16 @@ var $;
|
|
|
1275
1275
|
$mol_assert_unique([1], [2], [3]);
|
|
1276
1276
|
},
|
|
1277
1277
|
'two must be alike'() {
|
|
1278
|
-
$
|
|
1278
|
+
$mol_assert_equal([3], [3]);
|
|
1279
1279
|
},
|
|
1280
1280
|
'three must be alike'() {
|
|
1281
|
-
$
|
|
1281
|
+
$mol_assert_equal([3], [3], [3]);
|
|
1282
1282
|
},
|
|
1283
1283
|
'two object must be alike'() {
|
|
1284
|
-
$
|
|
1284
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
1285
1285
|
},
|
|
1286
1286
|
'three object must be alike'() {
|
|
1287
|
-
$
|
|
1287
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
1288
1288
|
},
|
|
1289
1289
|
});
|
|
1290
1290
|
})($ || ($ = {}));
|