As far as I recall the system you’d like to run the tests on needs to have a Chrome installed – it’s currently not bundled. Right, @Ilya Goncharov [JB]?
👍 1
i
Ilya Goncharov [JB]
02/25/2020, 6:08 AM
Yes, it is
Chrome is necessary to run tests by default, but if you want to run tests somewhere else, you can configure it in build script
f
Fleshgrinder
02/25/2020, 7:05 AM
Do you mean with "somewhere else" another browser or is there a way to automatically download the required dependencies?
i
Ilya Goncharov [JB]
02/25/2020, 8:07 AM
I meant another browser via
Copy code
kotlin {
target {
browser {
testTask {
useKarma {
useFirefox() // for example
}
}
}
}
}
We tested downloading of browser, but it was a big lack of performance