summaryrefslogtreecommitdiff
path: root/integration-test/src/jsTest/kotlin/sample/SampleTestsJS.kt
blob: c16985c64c4283b53b3b7a1769f7373a131b2e23 (plain)
1
2
3
4
5
6
7
8
9
10
11
package sample

import kotlin.test.Test
import kotlin.test.assertTrue

class SampleTestsJS {
    @Test
    fun testHello() {
        assertTrue("JS" in hello())
    }
}