Hi all, I recently upgraded to Kotlin 1.3.61 and s...
# multiplatform
o
Hi all, I recently upgraded to Kotlin 1.3.61 and some of my js test fails due to: “`No binary for ChromeHeadless browser on your platform."` Has anyone encountered something similar?
my gradle file
Copy code
kotlin {
    js {
        browser {
            compilations.main.kotlinOptions {
                metaInfo = true
                sourceMap = true
                sourceMapEmbedSources = 'always'
                moduleKind = 'commonjs'
                main = 'call'
            }
        }
    }
a
Hi, looks like a bug, can you please report this to http://kotl.in/issue with a sample project to reproduce? Thanks!
o
We disabled the browser tests and got everything to work 🙂 .