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/node.test.js
CHANGED
|
@@ -7838,16 +7838,16 @@ var $;
|
|
|
7838
7838
|
$mol_assert_unique([1], [2], [3]);
|
|
7839
7839
|
},
|
|
7840
7840
|
'two must be alike'() {
|
|
7841
|
-
$
|
|
7841
|
+
$mol_assert_equal([3], [3]);
|
|
7842
7842
|
},
|
|
7843
7843
|
'three must be alike'() {
|
|
7844
|
-
$
|
|
7844
|
+
$mol_assert_equal([3], [3], [3]);
|
|
7845
7845
|
},
|
|
7846
7846
|
'two object must be alike'() {
|
|
7847
|
-
$
|
|
7847
|
+
$mol_assert_equal({ a: 1 }, { a: 1 });
|
|
7848
7848
|
},
|
|
7849
7849
|
'three object must be alike'() {
|
|
7850
|
-
$
|
|
7850
|
+
$mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
|
|
7851
7851
|
},
|
|
7852
7852
|
});
|
|
7853
7853
|
})($ || ($ = {}));
|
|
@@ -8563,7 +8563,7 @@ var $;
|
|
|
8563
8563
|
}
|
|
8564
8564
|
await $mol_wire_async(A).a();
|
|
8565
8565
|
$mol_assert_equal(A.instances.length, 2);
|
|
8566
|
-
$mol_assert_equal(A.instances[0] instanceof A);
|
|
8566
|
+
$mol_assert_equal(A.instances[0] instanceof A, true);
|
|
8567
8567
|
$mol_assert_equal(A.instances[0], A.instances[1]);
|
|
8568
8568
|
}
|
|
8569
8569
|
});
|