mol_jsx_lib 0.0.286 → 0.0.288
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 +9 -4
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.test.js +9 -4
- package/web.test.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -3510,12 +3510,17 @@ var $;
|
|
|
3510
3510
|
], App, "result", null);
|
|
3511
3511
|
$mol_assert_equal(App.result(), 1);
|
|
3512
3512
|
$mol_assert_equal(App.counter, 1);
|
|
3513
|
-
App.condition(false);
|
|
3514
|
-
$mol_assert_equal(App.result(), 3);
|
|
3515
|
-
$mol_assert_equal(App.counter, 2);
|
|
3516
3513
|
App.first(10);
|
|
3517
|
-
$mol_assert_equal(App.result(),
|
|
3514
|
+
$mol_assert_equal(App.result(), 11);
|
|
3518
3515
|
$mol_assert_equal(App.counter, 2);
|
|
3516
|
+
App.condition(false);
|
|
3517
|
+
$mol_assert_equal(App.result(), 4);
|
|
3518
|
+
$mol_assert_equal(App.counter, 3);
|
|
3519
|
+
$mol_wire_fiber.sync();
|
|
3520
|
+
$mol_assert_equal(App.first(), 1);
|
|
3521
|
+
App.first(20);
|
|
3522
|
+
$mol_assert_equal(App.result(), 4);
|
|
3523
|
+
$mol_assert_equal(App.counter, 3);
|
|
3519
3524
|
},
|
|
3520
3525
|
'Dupes: Equality'($) {
|
|
3521
3526
|
let counter = 0;
|