Do not treat directory with copied test sources for js library as source root, as it confuses debugger under certain circumstances.

Remove duplicated test.
This commit is contained in:
Ilya Gorbunov
2015-10-24 06:58:23 +03:00
parent c456ab0f74
commit 9bbe0d67ff
2 changed files with 6 additions and 25 deletions
@@ -1,13 +0,0 @@
package test.text
import kotlin.*
import kotlin.test.*
import org.junit.Test as test
class StringUtilTest() {
@test fun toPattern() {
val re = """foo""".toPattern()
val list = re.split("hellofoobar").toList()
assertEquals(listOf("hello", "bar"), list)
}
}