mol_view_tree2_lib 1.0.34 → 1.0.36
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/package.json
CHANGED
package/web.test.js
CHANGED
|
@@ -906,16 +906,16 @@ var $;
|
|
|
906
906
|
$mol_assert_unique([1], [2], [3]);
|
|
907
907
|
},
|
|
908
908
|
'two must be alike'() {
|
|
909
|
-
$
|
|
909
|
+
$mol_assert_equal([3], [3]);
|
|
910
910
|
},
|
|
911
911
|
'three must be alike'() {
|
|
912
|
-
$
|
|
912
|
+
$mol_assert_equal([3], [3], [3]);
|
|
913
913
|
},
|
|
914
914
|
'two object must be alike'() {
|
|
915
|
-
$
|
|
915
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
916
916
|
},
|
|
917
917
|
'three object must be alike'() {
|
|
918
|
-
$
|
|
918
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
919
919
|
},
|
|
920
920
|
});
|
|
921
921
|
})($ || ($ = {}));
|
|
@@ -2653,7 +2653,7 @@ var $;
|
|
|
2653
2653
|
}
|
|
2654
2654
|
await $mol_wire_async(A).a();
|
|
2655
2655
|
$mol_assert_equal(A.instances.length, 2);
|
|
2656
|
-
$mol_assert_equal(A.instances[0] instanceof A);
|
|
2656
|
+
$mol_assert_equal(A.instances[0] instanceof A, true);
|
|
2657
2657
|
$mol_assert_equal(A.instances[0], A.instances[1]);
|
|
2658
2658
|
}
|
|
2659
2659
|
});
|