-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to connect to chrome error (ember exam --parallel) #40
Comments
Your The error you got indicates that we connencted to a chrome instance over port 9222, but there were no tabs running in that instance. Is it possible you have multiple instances of chrome running with a remote debugging port? |
Also, have you tried running with a simpler |
It very well could be an issue with ember exam's parallel flag. I assume the parallel arg will cause testem to boot up multiple chrome instances all running on the same remote debugging port. When the addon attempts to connect to chrome to capture a heap snapshot, it will just be luck-of-the-draw deciding which chrome instance we actually connect to. In order for this to work properly we need to make sure that every instance of chrome is running on a unique debugging port which would take some coordination between the addon config, the testem config, and ember exam. This is going to be tricky to solve, and nothing is coming to mind immediately. |
I have the same problem using I installed
The "did not match any..." name doesn't appear to change even after applying a |
@steveszc I tried removing |
The It's possible that there is a headless instance of chrome "invisibly" hanging around after one of these unsuccessful attempts. I remember running into a similar issue a few times while I was building the addon. |
This worked for me. Thanks @steveszc! |
This also worked for me locally, thanks! |
Hi! Just installed this addon in our app but we currently get this error after we run tests every time. This happens if we run the tests locally or on our CI.
Any ideas what could be causing it?
Thanks!
This is our test script:
"test": "percy exec -t 250 -- ember exam --random=10 --split=16 --parallel",
This is our testem config:
The text was updated successfully, but these errors were encountered: