summaryrefslogtreecommitdiff
path: root/integration-test/src/jsTest/kotlin/sample/SampleTestsJS.kt
blob: 5f7dc918d5da5af59068cf71e7c1ca5c4da2a7cd (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())
    }
}