loki icon indicating copy to clipboard operation
loki copied to clipboard

ECONNREFUSED error again on windows

Open bonesoul opened this issue 3 years ago • 1 comments

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?

bonesoul avatar Jul 15 '22 03:07 bonesoul

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 👍

techeverri avatar Jul 15 '22 13:07 techeverri

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"
  },
}

vladbulyukhin avatar Sep 23 '22 19:09 vladbulyukhin

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 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 avatar Oct 05 '22 17:10 AiranBalor

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 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 avatar Oct 12 '22 20:10 vladbulyukhin

@vladbulyukhin I did, but still I get the same error. I using chrome.docker instead chore.app, that help.

AiranBalor avatar Oct 12 '22 21:10 AiranBalor

anybody has got fix?

romanovvINC avatar Oct 30 '23 15:10 romanovvINC