IDEA: don't try to create run configuration by JUnit and TestNG producers for Kotlin JS modules.

This commit is contained in:
Zalim Bashorov
2015-02-13 15:37:08 +03:00
parent 4704941488
commit 905ce426c7
5 changed files with 49 additions and 8 deletions
@@ -0,0 +1,14 @@
package q
native
class Foo {
// RUN:
fun foo(s: Array<String>) = noImpl
}
// RUN:
native
fun main(s: Array<String>) {
println("Top-level")
}