Maven: Introduce test-js goal

#KT-7757 Fixed Maven K2JS should be able to build tests too
This commit is contained in:
Sergey Mashkov
2015-05-15 21:21:11 +03:00
parent b25ae3d7dd
commit 35ed682714
5 changed files with 183 additions and 15 deletions
+6
View File
@@ -39,6 +39,12 @@
<goal>js</goal>
</goals>
</execution>
<execution>
<id>js tests</id>
<goals>
<goal>test-js</goal>
</goals>
</execution>
</executions>
</plugin>
@@ -1,9 +1,11 @@
package test.sample
import sample.Hello
import org.junit.Test
class SampleTest {
Test fun dummy(): Unit {
Hello().doSomething()
}
}
}