mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 21:07:04 +05:30
feat(database): migrate away from kotest
This commit is contained in:
parent
7c5a9eb683
commit
4d78a73602
3 changed files with 116 additions and 105 deletions
|
@ -33,8 +33,13 @@ dependencies {
|
|||
implementation(libs.sqldelight.primitiveAdapters)
|
||||
implementation(projects.core)
|
||||
|
||||
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.core)
|
||||
testImplementation(libs.sqldelight.jvmDriver)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue