Get rid of MultiPlatform Code, pt 2. (Remove JS modules)
This commit is contained in:
parent
efbc801836
commit
b63f92535f
3 changed files with 0 additions and 35 deletions
|
@ -11,19 +11,6 @@ apply(plugin = "maven-publish")
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
jvm()
|
jvm()
|
||||||
js {
|
|
||||||
// FIXME: JS-Tests
|
|
||||||
browser {
|
|
||||||
testTask {
|
|
||||||
enabled = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
nodejs {
|
|
||||||
testTask {
|
|
||||||
enabled = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
commonMain {
|
commonMain {
|
||||||
|
@ -48,16 +35,6 @@ kotlin {
|
||||||
implementation(kotlin("test-junit"))
|
implementation(kotlin("test-junit"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
getByName("jsMain") {
|
|
||||||
dependencies {
|
|
||||||
implementation(kotlin("stdlib-js"))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
getByName("jsTest") {
|
|
||||||
dependencies {
|
|
||||||
implementation(kotlin("test-js"))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
all {
|
all {
|
||||||
languageSettings.enableLanguageFeature("InlineClasses")
|
languageSettings.enableLanguageFeature("InlineClasses")
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
package de.pheerai.rcdbquery
|
|
|
@ -1,11 +0,0 @@
|
||||||
package de.pheerai.rcdbquery
|
|
||||||
|
|
||||||
import kotlin.test.Test
|
|
||||||
import kotlin.test.assertTrue
|
|
||||||
|
|
||||||
class SampleTestsJS {
|
|
||||||
@Test
|
|
||||||
fun testHello() {
|
|
||||||
assertTrue("JS" in hello())
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue