mirror of
https://github.com/jlengrand/kotlin-samples.git
synced 2026-03-10 08:31:22 +00:00
12 lines
295 B
Kotlin
12 lines
295 B
Kotlin
import kotlinx.browser.document
|
|
import kotlin.test.Test
|
|
import kotlin.test.assertEquals
|
|
|
|
class TestClient {
|
|
@Test
|
|
fun testSayHello() {
|
|
val container = document.createElement("div")
|
|
container.sayHello()
|
|
assertEquals("Hello from JS", container.textContent)
|
|
}
|
|
} |