Isaac Ezer
Isaac Ezer
I have a reproduction for this. I forked the `ember-engines-demo` repo and made a few changes. See the [changes here](https://github.com/dgeb/ember-engines-demo/compare/master...iezer:master). Here's what I did: * Modify the demo so that...
I was able to work around this issue using `generateURI` function described in the guides under [Deploying and Fastboot](http://ember-engines.com/guide/deploying-and-fastboot). It's a bit annoying that we have to configure this in...
@cibernox Awesome, thanks for picking this up. I wonder if it's possible to detect if a user is using the old syntax of `moduleFor` and passing `beforeEach` and `afterEach`, versus...
👍 That looks great. I misread that as merely checking for `@ember/test-helpers` but now I see you're checking `!!getContext()`
Yes injecting the service would be better. We have a hack in an instance-initializer to set `Ember.I18n = application.container.lookup('service:i18n')`
@mike-north I think we should get rid of the `isJsonApi(doc)` check [here](https://github.com/mike-north/ember-api-actions/blob/master/addon/utils/serialize-and-push.ts#L13) and simply do `return ['object', 'array'].indexOf(typeOf((doc as DocWithData).data)) >= 0;`
Ember Data is a likely to also throw an exception if the input is not valid JSON API. I wonder if there's another function we can use within Ember Data...
Pairing @rondale-sc, we're proposing to add folders for HAR files called `archives` both in the root folder and also in each of the individual config folders. So the structure will...
According to the [spec](https://github.com/dgeb/rfcs/blob/module-unification/text/0000-module-unification.md), the file should go into `src/ui/partials/post-display.hbs`.
👍 I'm also interested in 3., did you find a solution?