egorand
01/20/2020, 10:19 PM19 01 2020 20:45:29.838:INFO [karma-server]: Karma v4.4.1 server started at <http://0.0.0.0:9876/>
19 01 2020 20:45:29.842:INFO [launcher]: Launching browsers Chrome with concurrency unlimited
19 01 2020 20:45:29.848:INFO [launcher]: Starting browser Chrome
19 01 2020 20:46:29.967:WARN [launcher]: Chrome have not captured in 60000 ms, killing.
19 01 2020 20:46:31.977:WARN [launcher]: Chrome was not killed in 2000 ms, sending SIGKILL.
19 01 2020 20:46:34.018:WARN [launcher]: Chrome was not killed by SIGKILL in 2000 ms, continuing.
java.lang.IllegalStateException: command '/Users/travis/.gradle/nodejs/node-v10.15.3-darwin-x64/bin/node' exited with errors (exit code: 1)
I started with the following configuration:
kotlin {
js {
nodejs()
browser()
}
}
which AFAIK uses headless Chrome by default, and later changed to this without much luck:
kotlin {
js {
nodejs()
browser {
testTask {
useKarma {
useChrome()
}
}
}
}
}
I'm unable to reproduce the issue locally. Has anyone had similar failures and managed to work around them?fcosta
01/21/2020, 1:36 AMCircleCI
. I fixed it using a docker image with Google Chrome installed.
I think you can solve this installing Google Chrome in your TravisCI environment.Sebastian Aigner
01/21/2020, 10:51 AMegorand
01/21/2020, 9:21 PMegorand
01/21/2020, 10:58 PMJames Mulholland
03/16/2020, 12:48 PMegorand
03/16/2020, 1:51 PMbrowser()
instruction