ECONNREFUSED error again on windows
although i've commented here https://github.com/oblador/loki/issues/369 i wanted to create a new issue as the old one is already closed.
still getting the error with windows witn node 18.
λ loki update
loki update v0.30.3
FAIL chrome.app
Fetching stories
connect ECONNREFUSED ::1:55504
Some visual tests failed to run
any chances to test with chrome-launcher 0.15.1?
You can try updating chrome-launcher and testing on your Windows machine @bonesoul
Feel free to open a pull request with the dependency update, if that fixes it 👍
I also encountered this problem. It turned out that in my case, it was not chrome-launcher, but chrome-remote-interface that caused it. I created a PR (#418) with a newer version of chrome-remote-interface, but overriding the chrome-remote-interface version in your package.json, removing node_modules and reinstalling packages also helps and can be used as a workaround.
Workaround
// package.json
{
"overrides": {
"chrome-remote-interface": "0.31.3"
},
}
I also encountered this problem. It turned out that in my case, it was not
chrome-launcher, butchrome-remote-interfacethat caused it. I created a PR (#418) with a newer version ofchrome-remote-interface, but overriding thechrome-remote-interfaceversion in your package.json also helps and can be used as a workaround.Workaround
// package.json { "overrides": { "chrome-remote-interface": "0.31.3" }, }
Did't work, still got same error
I also encountered this problem. It turned out that in my case, it was not
chrome-launcher, butchrome-remote-interfacethat caused it. I created a PR (#418) with a newer version ofchrome-remote-interface, but overriding thechrome-remote-interfaceversion in your package.json also helps and can be used as a workaround. Workaround// package.json { "overrides": { "chrome-remote-interface": "0.31.3" }, }Did't work, still got same error
@AiranBalor that's strange. It worked for me, I use it as a workaround in my GitHub Action. Have you tried removing node_modules and package-lock.json and re-installing everything after adding "overrides" to your package.json?
@vladbulyukhin I did, but still I get the same error. I using chrome.docker instead chore.app, that help.
anybody has got fix?