JS: remove MULTIPLATFORM directive from box tests

Move all sources into one module and use "!LANGUAGE:
+MultiPlatformProjects" instead
This commit is contained in:
Alexander Udalov
2018-01-24 12:14:43 +01:00
parent d465f5fd8e
commit d356f52873
2 changed files with 11 additions and 23 deletions
+2 -4
View File
@@ -1,7 +1,6 @@
// !LANGUAGE: +MultiPlatformProjects
// EXPECTED_REACHABLE_NODES: 1173
// MULTIPLATFORM
// MODULE: lib
// FILE: lib.kt
import kotlin.test.Test
@@ -9,7 +8,6 @@ expect class PlatformTest {
@Test fun platformTest()
}
// MODULE: main(lib)
// FILE: main.kt
import kotlin.test.Test
@@ -24,4 +22,4 @@ fun box() = checkLog {
test("platformTest")
test("someOtherTest")
}
}
}