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

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

class SampleTestsWasm {
    @Test
    fun testHello() {
        assertTrue("WasmJs" in hello())
    }
}