You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are on Ember Table V5.0.6. We used the setupEmberTableForTest(); helper in our tests.
But our integration test are still flaky. It seems that some rendering tasks that are not completed before the tests moves on to the next line despite the await call.
I looked at Ember table's tests and I noticed that settled() is called after render() is called.
We are on Ember Table V5.0.6. We used the
setupEmberTableForTest();
helper in our tests.But our integration test are still flaky. It seems that some rendering tasks that are not completed before the tests moves on to the next line despite the await call.
I looked at Ember table's tests and I noticed that
settled()
is called afterrender()
is called.This fixed my failing tests but this triggers the no-settled-after-test-helper eslint error.
What can be done to fix this without having to call
settled()
afterrender()
is called?The text was updated successfully, but these errors were encountered: