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
As of ember-cli 2.17.0, the test-helper module no longer uses the custom tests/helpers/resolver.js and instead defaults to the app/resolver.js. Basically, the whole tests/helpers/resolver.js file is removed completely.
With it gone, and the app resolver being used, it looks like the fix for pluralized ability: 'abilities' is no longer necessary, so we should be able to safely remove it, unless I'm mistaken.
The text was updated successfully, but these errors were encountered:
I think it's only fixed if initializer:ember-can is required. You don't have to run the initializer since the relevant resolver modifications are in the module, not the initializer it exports. That means that if an acceptance test runs first, it'll work. If a unit or integration test runs first, however, there could be problems.
As of ember-cli
2.17.0
, thetest-helper
module no longer uses the customtests/helpers/resolver.js
and instead defaults to theapp/resolver.js
. Basically, the wholetests/helpers/resolver.js
file is removed completely.With it gone, and the app resolver being used, it looks like the fix for pluralized
ability: 'abilities'
is no longer necessary, so we should be able to safely remove it, unless I'm mistaken.The text was updated successfully, but these errors were encountered: