We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 903348f commit 00cc332Copy full SHA for 00cc332
core/src/test/scala/io/udash/properties/PropertyTest.scala
@@ -337,6 +337,9 @@ class PropertyTest extends UdashCoreTest {
337
338
origin.set(None, force = true)
339
counter shouldBe 2
340
+
341
+ origin.touch()
342
+ counter shouldBe 3
343
}
344
345
"fire on streamed value changed or when forced" in {
@@ -359,6 +362,10 @@ class PropertyTest extends UdashCoreTest {
359
362
360
363
origin.set(None)
361
364
counter shouldBe 1
365
366
+ //todo detect forced / touched?
367
+ //origin.set(None, force = true)
368
+ //counter shouldBe 2
369
370
371
"combine with other properties (single properties)" in {
0 commit comments