summaryrefslogtreecommitdiff
path: root/integration-test/src/wasmJsTest/kotlin/sample/SampleTestsWasm.kt
blob: 82dfb787b9f59a95e031c17d8ae0be2406cb3be0 (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("Wasm" in hello())
    }
}