BoussonKarel
BoussonKarel
I don't know how your testing suite works, so if someone could write a test for this, that would be great. 1. Create a date input 2. Fill in a...
It was resolved by the author of strict-event-emitter: https://github.com/open-draft/strict-event-emitter/releases/tag/v0.4.4 by removing the class private methods, but that does not resolve this ember-auto-import bug I guess.

Yes please! :+1:
I use Format selection a lot in typescript and handlebars files. In next-gen Ember, we now have a new component authoring format called with "template tags". These are written in...
`post.comments.splice(0)` does not seem to work correctly on a hasMany array? It removes one item instead of clearing the whole array. `post.comments.splice(0, post.comments.length)` does work
I had some inflector rules in an initializer: ```ts import Inflector from 'ember-inflector'; export function initialize(/* application */) { const inflector = Inflector.inflector; inflector.uncountable('price-quote-extra-services'); } export default { name: 'custom-inflector-rules',...
> that said I think if you are on latest 4.13 this has now been done, though [@nickschot](https://github.com/nickschot) mentioned it seems the initializer fix only works in the app, not...
> if you call `createRecord` in a test expecting a re-render, you need to `await settled` Same goes for `.destroyRecord` etc, you need an await settled() before asserting properties like...