Shan
11/24/2019, 7:48 AMAt this point, test tasks for Kotlin/JS are created but do not run tests by default; they should be manually configured to run the tests with a JavaScript test framework. but I am not quite sure about how to go about this..russhwolf
11/24/2019, 5:04 PMbrowser() and nodejs(), and test tasks will be configured if you call one or both from your js target block.
kotlin {
js {
browser()
}
}
There’s also a bunch more fine-grained configuration you can pass inside of browser() and nodejs()Shan
11/24/2019, 9:28 PM