This commit is contained in:
Onuray Sahin 2022-06-16 17:30:17 +03:00
parent a1d35ae9e4
commit 14a4a8edd7
1 changed files with 6 additions and 4 deletions

View File

@ -36,6 +36,7 @@ import im.vector.app.test.fakes.FakeSession
import im.vector.app.test.test
import io.mockk.unmockkAll
import kotlinx.coroutines.delay
import kotlinx.coroutines.test.UnconfinedTestDispatcher
import kotlinx.coroutines.test.runTest
import org.amshove.kluent.shouldBe
import org.junit.After
@ -47,7 +48,9 @@ import org.matrix.android.sdk.api.session.room.model.message.PollType
class CreatePollViewModelTest {
@get:Rule
val mvrxTestRule = MvRxTestRule()
val mvrxTestRule = MvRxTestRule(
testDispatcher = UnconfinedTestDispatcher() // See https://github.com/airbnb/mavericks/issues/599
)
private val fakeSession = FakeSession()
@ -132,9 +135,8 @@ class CreatePollViewModelTest {
createPollViewModel.handle(CreatePollAction.OnOptionChanged(it, A_FAKE_OPTIONS[it]))
}
delay(10)
createPollViewModel
.test()
//delay(10)
createPollViewModel.test()
.assertState(pollViewStateWithQuestionAndEnoughOptions)
.finish()
}