You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.0 KiB
77 lines
2.0 KiB
4 years ago
|
plugins {
|
||
|
id("kotlin-multiplatform")
|
||
|
id("org.jetbrains.compose")
|
||
|
}
|
||
|
|
||
|
|
||
|
kotlin {
|
||
|
jvm {
|
||
4 years ago
|
tasks.named<Test>("jvmTest") {
|
||
4 years ago
|
testLogging.showStandardStreams = true
|
||
|
|
||
|
useJUnitPlatform()
|
||
|
|
||
|
systemProperty(
|
||
|
"COMPOSE_WEB_INTEGRATION_TESTS_DISTRIBUTION",
|
||
4 years ago
|
File(buildDir, "developmentExecutable")
|
||
4 years ago
|
)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
js(IR) {
|
||
|
browser() {
|
||
|
testTask {
|
||
|
testLogging.showStandardStreams = true
|
||
|
useKarma {
|
||
|
useChromeHeadless()
|
||
|
useFirefox()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
binaries.executable()
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
4 years ago
|
val commonMain by getting {
|
||
4 years ago
|
dependencies {
|
||
|
implementation(compose.runtime)
|
||
4 years ago
|
implementation(project(":web-core"))
|
||
4 years ago
|
implementation(kotlin("stdlib-common"))
|
||
|
}
|
||
|
}
|
||
|
|
||
4 years ago
|
val jsMain by getting {
|
||
4 years ago
|
dependencies {
|
||
|
implementation(kotlin("stdlib-js"))
|
||
4 years ago
|
implementation(npm("highlight.js", "10.7.2"))
|
||
4 years ago
|
}
|
||
|
}
|
||
|
|
||
4 years ago
|
val jsTest by getting {
|
||
4 years ago
|
dependencies {
|
||
4 years ago
|
implementation(kotlin("test-js"))
|
||
4 years ago
|
}
|
||
|
}
|
||
|
|
||
4 years ago
|
val jvmTest by getting {
|
||
4 years ago
|
dependencies {
|
||
|
implementation("org.slf4j:slf4j-api:1.7.30")
|
||
|
implementation("org.slf4j:slf4j-simple:1.7.30")
|
||
|
|
||
|
implementation("org.seleniumhq.selenium:selenium-java:3.141.59")
|
||
|
|
||
|
implementation("io.ktor:ktor-server-netty:1.5.4")
|
||
|
implementation("io.ktor:ktor-server-core:1.5.4")
|
||
|
implementation("io.ktor:ktor-server-host-common:1.5.4")
|
||
|
|
||
|
implementation("org.junit.jupiter:junit-jupiter-engine:5.7.1")
|
||
|
implementation("org.junit.jupiter:junit-jupiter-api:5.7.1")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
4 years ago
|
tasks.named<Test>("jvmTest") {
|
||
|
dependsOn(tasks.named("jsBrowserDevelopmentWebpack"))
|
||
|
}
|