https://kotlinlang.org logo
o

Ola Adolfsson

01/19/2020, 9:38 PM
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

Alexey Belkov [JB]

01/21/2020, 8:12 AM
Hi, looks like a bug, can you please report this to http://kotl.in/issue with a sample project to reproduce? Thanks!
o

Ola Adolfsson

01/21/2020, 9:10 AM
We disabled the browser tests and got everything to work 🙂 .
2 Views