1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package test.com.example import com.example.Showcase import kotlin.browser.document import kotlin.test.Test import kotlin.test.assertTrue class ShowcaseSpec : DomSpec { @Test fun render() { run { Showcase().start(mapOf()) val element = document.getElementById("showcase") assertTrue(true, "True" ) } } }