mol_plot_all 1.2.1547 → 1.2.1549
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
|
@@ -727,16 +727,16 @@ var $;
|
|
|
727
727
|
$mol_assert_unique([1], [2], [3]);
|
|
728
728
|
},
|
|
729
729
|
'two must be alike'() {
|
|
730
|
-
$
|
|
730
|
+
$mol_assert_equal([3], [3]);
|
|
731
731
|
},
|
|
732
732
|
'three must be alike'() {
|
|
733
|
-
$
|
|
733
|
+
$mol_assert_equal([3], [3], [3]);
|
|
734
734
|
},
|
|
735
735
|
'two object must be alike'() {
|
|
736
|
-
$
|
|
736
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
737
737
|
},
|
|
738
738
|
'three object must be alike'() {
|
|
739
|
-
$
|
|
739
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
740
740
|
},
|
|
741
741
|
});
|
|
742
742
|
})($ || ($ = {}));
|
|
@@ -1162,7 +1162,7 @@ var $;
|
|
|
1162
1162
|
}
|
|
1163
1163
|
await $mol_wire_async(A).a();
|
|
1164
1164
|
$mol_assert_equal(A.instances.length, 2);
|
|
1165
|
-
$mol_assert_equal(A.instances[0] instanceof A);
|
|
1165
|
+
$mol_assert_equal(A.instances[0] instanceof A, true);
|
|
1166
1166
|
$mol_assert_equal(A.instances[0], A.instances[1]);
|
|
1167
1167
|
}
|
|
1168
1168
|
});
|