diff options
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/build.gradle.kts b/build.gradle.kts deleted file mode 100644 index b8e248f..0000000 --- a/build.gradle.kts +++ /dev/null @@ -1,32 +0,0 @@ -plugins { - kotlin("multiplatform") version "1.5.21" - id("io.kotest.multiplatform") version "5.0.0.3" -} - -repositories { - mavenCentral() - maven("https://oss.sonatype.org/content/repositories/snapshots") -} - -val kotestVersion: String by project - -kotlin { - targets { - js(IR) { - nodejs { } - browser { testTask { useMocha() } } - } - } - sourceSets { - val jsMain by getting { - - } - val jsTest by getting { - dependencies { - implementation("io.kotest:kotest-assertions-core:5.0.0.376-SNAPSHOT") - implementation("io.kotest:kotest-framework-api:5.0.0.376-SNAPSHOT") - implementation("io.kotest:kotest-framework-engine:5.0.0.376-SNAPSHOT") - } - } - } -} |