From 6142f5996021eb7199f520bdeb5243321edd65f9 Mon Sep 17 00:00:00 2001 From: "sebastian.sellmair" Date: Fri, 31 Jul 2020 17:16:59 +0200 Subject: Add js target back to Multiplatform0GradleIntegrationTest --- integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'integration-tests/gradle') diff --git a/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts b/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts index aded7b15..52aa9d36 100644 --- a/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts +++ b/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts @@ -11,6 +11,7 @@ kotlin { jvm() linuxX64("linux") macosX64("macos") + js() sourceSets { named("commonMain") { dependencies { @@ -26,5 +27,6 @@ tasks.withType { create("jvmMain") create("linuxMain") create("macosMain") + create("jsMain") } } -- cgit