In running JS Browser test; it looks like the tool...
# javascript
d
In running JS Browser test; it looks like the toolchain (K/JS, Karma, Chrome Headless) is also executing my JS Application and not just the Unit Tests.
r
I had similar problem. I use this at the beginning of the
main
function as a workaround:
Copy code
if (window.asDynamic().__karma__) return
d
Thanks! That did the trick. Do you suppose this is a bug with Kotlin/JS?
r
d
👍
Voted