Tobias Bieniek
Tobias Bieniek
this seems like a rare edge case to me. if it's possible to support this without adding much more complexity to the project we should do it, but if it...
Unfortunately there is currently no solution for this built into the project. If you have an idea on how to implement it please let us know.
@offirgolan in the Ember CLI codebase we replace `ui` with a `MockUI` instance, that let's us mock the `prompt()` method. maybe that helps in some way.
@offirgolan have a look at https://github.com/ember-cli/ember-cli-eslint/pull/114 for an example on how to mock the inquirer prompt. it's not pretty yet, but it's a start...
@seanjohnson08 I agree, do you want to work on this?
good point, I didn't check the `deprecated` flag on those đ
I've updated the list > I didn't think that we exposed the RouterService on the global at all actually. We make it available in the default app registry, but I...
instead of `import MutableEnumerable from "@ember/mutable-enumerable"` I would like to suggest `import MutableEnumerable from "@ember/enumerable/mutable"`
I just noticed another one: ``` Ember.Handlebars.Utils.escapeExpression ```
one more interesting thing: ``` Ember.String.singularize Ember.String.pluralize ``` These methods are apparently monkey-patched onto `Ember.String` by `ember-inflector` which is imported by `ember-data`