summaryrefslogtreecommitdiff
path: root/build.gradle.kts
blob: 1302fab7881f644e25763b58d0883369d1f8f4da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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 {
				webpackTask {
					output.libraryTarget = "umd"
				}
				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")
			}
		}
	}
}