-
-
Notifications
You must be signed in to change notification settings - Fork 333
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
Maxiumum call stack error with paper chips in acceptance test #633
Comments
I see this also with integration tests. We are using ember-native-dom-helpers |
Just for reference I'm not using |
It looks like "input.is('focus')" keeps returning false in ember-chips::inputFocus, causing focus to be set infinitely. And ember-native-dom-helpers::fillIn (and presumably the tests written by those not using ember-native-dom-helpers) will set focus, set text, fire 'input' event, fire 'change' event, sparking this infinite loop. ember-chips::inputFocus:
This is very likely related to an open phantomjs bug: ariya/phantomjs#10427 |
@markdicksonjr this is 100% not a phantomjs bug. I stopped testing in phantom and it happens randomly in chrome too. Actually after upgrading to latest ember and latest ember-paper its no longer random and happens on every run. |
@arschmitz I wrote tests around chips in #828 and fixed a small (missing) conditional check, and it no longer happens for me in Chrome at all |
using the
keyEvent
helper in acceptance tests to add items to apaper-chips
component causes a maximum call stack error in phantomjs but works fine in browser this is a huge pain for testing on travis though the code is simplyThe text was updated successfully, but these errors were encountered: