Fixed test setup

This commit is contained in:
dankito 2023-04-10 23:17:02 +02:00
parent be296eaad9
commit 2c7240f375
1 changed files with 4 additions and 10 deletions

View File

@ -25,10 +25,9 @@ kotlin {
js(IR) {
browser {
testTask {
this.isEnabled = false
useKarma {
useChromeHeadless()
useFirefoxHeadless()
webpackConfig.cssSupport.enabled = true
}
}
@ -58,8 +57,7 @@ kotlin {
}
val commonTest by getting {
dependencies {
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
implementation(kotlin("test"))
}
}
@ -70,7 +68,7 @@ kotlin {
}
val jvmTest by getting {
dependencies {
implementation(kotlin("test-junit"))
}
}
@ -78,11 +76,7 @@ kotlin {
val iosTest by getting
val jsMain by getting
val jsTest by getting {
dependencies {
implementation(kotlin("test-js"))
}
}
val jsTest by getting
val nativeMain by getting