Talon
01/30/2019, 8:15 PMval commonTest by getting {
dependencies {
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
implementation("org.jetbrains.kotlinx:kotlinx-serialization-runtime-common:0.9.1")
}
}
I'm getting Unresolved reference: Test
when I try and gradle check
this multiplatform project. IntelliJ is able to find test-annotations-common
at least enough to auto-import and stuff but something about the tests loses it?Talon
01/30/2019, 8:43 PMval jvmTest by getting {
dependencies {
// ...
implementation(kotlin("test-junit"))
}
}