9ddac98e0c
Converts the unit tests to use kotlin-test, allowing them to target both the jvm and js platforms.
12 lines
254 B
Groovy
12 lines
254 B
Groovy
apply plugin: 'kotlin-platform-js'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-js:$kotlinVersion"
|
|
expectedBy project(":")
|
|
testCompile "org.jetbrains.kotlin:kotlin-test-js:$kotlinVersion"
|
|
}
|