mol_wire_lib 1.0.416 → 1.0.418
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
|
@@ -3422,12 +3422,17 @@ var $;
|
|
|
3422
3422
|
], App, "result", null);
|
|
3423
3423
|
$mol_assert_equal(App.result(), 1);
|
|
3424
3424
|
$mol_assert_equal(App.counter, 1);
|
|
3425
|
-
App.condition(false);
|
|
3426
|
-
$mol_assert_equal(App.result(), 3);
|
|
3427
|
-
$mol_assert_equal(App.counter, 2);
|
|
3428
3425
|
App.first(10);
|
|
3429
|
-
$mol_assert_equal(App.result(),
|
|
3426
|
+
$mol_assert_equal(App.result(), 11);
|
|
3430
3427
|
$mol_assert_equal(App.counter, 2);
|
|
3428
|
+
App.condition(false);
|
|
3429
|
+
$mol_assert_equal(App.result(), 4);
|
|
3430
|
+
$mol_assert_equal(App.counter, 3);
|
|
3431
|
+
$mol_wire_fiber.sync();
|
|
3432
|
+
$mol_assert_equal(App.first(), 1);
|
|
3433
|
+
App.first(20);
|
|
3434
|
+
$mol_assert_equal(App.result(), 4);
|
|
3435
|
+
$mol_assert_equal(App.counter, 3);
|
|
3431
3436
|
},
|
|
3432
3437
|
'Dupes: Equality'($) {
|
|
3433
3438
|
let counter = 0;
|