mol_text_distance 0.0.1334 → 0.0.1336
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
|
@@ -1972,7 +1972,7 @@ var $;
|
|
|
1972
1972
|
}
|
|
1973
1973
|
await $mol_wire_async(A).a();
|
|
1974
1974
|
$mol_assert_equal(A.instances.length, 2);
|
|
1975
|
-
$mol_assert_equal(A.instances[0] instanceof A);
|
|
1975
|
+
$mol_assert_equal(A.instances[0] instanceof A, true);
|
|
1976
1976
|
$mol_assert_equal(A.instances[0], A.instances[1]);
|
|
1977
1977
|
}
|
|
1978
1978
|
});
|
|
@@ -3263,16 +3263,16 @@ var $;
|
|
|
3263
3263
|
$mol_assert_unique([1], [2], [3]);
|
|
3264
3264
|
},
|
|
3265
3265
|
'two must be alike'() {
|
|
3266
|
-
$
|
|
3266
|
+
$mol_assert_equal([3], [3]);
|
|
3267
3267
|
},
|
|
3268
3268
|
'three must be alike'() {
|
|
3269
|
-
$
|
|
3269
|
+
$mol_assert_equal([3], [3], [3]);
|
|
3270
3270
|
},
|
|
3271
3271
|
'two object must be alike'() {
|
|
3272
|
-
$
|
|
3272
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
3273
3273
|
},
|
|
3274
3274
|
'three object must be alike'() {
|
|
3275
|
-
$
|
|
3275
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
3276
3276
|
},
|
|
3277
3277
|
});
|
|
3278
3278
|
})($ || ($ = {}));
|