File tree 1 file changed +8
-1
lines changed
frp/src/test/scala/calico/frp
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -32,11 +32,17 @@ import munit.DisciplineSuite
32
32
import org .scalacheck .Arbitrary
33
33
import org .scalacheck .Arbitrary .arbitrary
34
34
import org .scalacheck .Gen
35
+ import org .scalacheck .rng .Seed
35
36
37
+ import java .util .Base64
36
38
import scala .concurrent .duration .*
37
39
38
40
class SignalSuite extends DisciplineSuite , TestInstances :
39
41
42
+ def testControlSeed =
43
+ val bytes = Seed .fromBase64(scalaCheckInitialSeed).get.long._1.toString.getBytes()
44
+ new String (Base64 .getEncoder().encode(bytes))
45
+
40
46
override def scalaCheckTestParameters =
41
47
if sys.props(" java.vm.name" ).contains(" Scala.js" ) then
42
48
super .scalaCheckTestParameters.withMinSuccessfulTests(10 ).withMaxSize(10 )
@@ -81,7 +87,8 @@ class SignalSuite extends DisciplineSuite, TestInstances:
81
87
.evalMap(x => ref.update(x :: _))
82
88
.compile
83
89
.drain
84
- .timeoutTo(Long .MaxValue .nanos, IO .unit)
90
+ .timeoutTo(Long .MaxValue .nanos, IO .unit),
91
+ seed = Some (testControlSeed)
85
92
) *> ref.get.map(_.distinctBy(_._2))
86
93
}
87
94
}
You can’t perform that action at this time.
0 commit comments