feat(api): migrate away from kotest

This commit is contained in:
Harsh Shandilya 2023-05-04 03:33:33 +05:30
parent 5d2eebf093
commit ae66aced83
No known key found for this signature in database
3 changed files with 72 additions and 48 deletions

View file

@ -24,8 +24,14 @@ dependencies {
implementation(libs.javax.inject)
testImplementation(testFixtures(libs.eithernet))
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.kotlinx.serialization.json)
testImplementation(libs.retrofit.kotlinxSerializationConverter)
}