Mirian Fonkam
07/17/2024, 8:14 PMsequence {
of logical validations (none of which are long running), do I have to use runTest
in each test case? The result is obtained through a terminal operation on the sequence. I was not using runTest and my tests were always passing locally but failed on the CI. A colleague found a solution using runTest with an Unconfined dispatcher. I am trying to understand why this solved the issue and if it is always needed for dealing with sequence builders that yield a result.ephemient
07/17/2024, 8:41 PMsequence
doesn't use any kotlinx.coroutines
dispatchers so it shouldn't be relatedephemient
07/17/2024, 8:49 PMMirian Fonkam
07/23/2024, 12:33 AM