compose-lobsters/database/build.gradle.kts
Harsh Shandilya 420f792290
all: switch to kotlin.test for unit testing
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-03-18 23:56:28 +05:30

11 lines
266 B
Kotlin

plugins {
kotlin("jvm")
id("com.squareup.sqldelight")
`lobsters-plugin`
}
dependencies {
testImplementation(Dependencies.Kotlin.Coroutines.core)
testImplementation(Dependencies.ThirdParty.SQLDelight.jvmDriver)
testImplementation(kotlin("test-junit"))
}