feat(android): migrate away from kotest

This commit is contained in:
Harsh Shandilya 2023-05-04 03:38:23 +05:30
parent ae66aced83
commit ea40650214
No known key found for this signature in database
2 changed files with 49 additions and 36 deletions

View file

@ -74,7 +74,13 @@ dependencies {
kapt(libs.dagger.compiler)
testImplementation(libs.kotest.assertions.core)
testImplementation(libs.kotest.runner.junit5)
testImplementation(libs.junit.jupiter.api)
testImplementation(libs.truth) { exclude(group = "junit", module = "junit") }
testRuntimeOnly(libs.junit.jupiter.engine)
testRuntimeOnly(libs.junit.legacy) {
// See https://github.com/google/truth/issues/333
because("Truth needs it")
}
testImplementation(libs.kotlinx.coroutines.test)
testImplementation(libs.okhttp.mockwebserver)
}