Billy Heaton

Results 31 comments of Billy Heaton

@runspired this is the list of errors I see in the docs (3.9) and a few example uses ... DS.AdapterError [docs](https://api.emberjs.com/ember-data/release/classes/DS.AdapterError) **Subclasses**: - DS.InvalidError [docs](https://api.emberjs.com/ember-data/release/classes/DS.InvalidError) - DS.TimeoutError [docs](https://api.emberjs.com/ember-data/release/classes/DS.TimeoutError) - DS.AbortError...

@jagthedrummer Just saw this, https://github.com/json-api/json-api/issues/1089 seems that there are still a lot of question to resolve before the JSON API adapter/serializer can support embedded records. @taras since the EmbeddedRecordsMixin originally...

Tests to investigate: - https://github.com/emberjs/ember.js/blob/7819409b7b6559e9fc0300a29e66a16356fb67a7/packages/ember-testing/tests/helpers_test.js#L696-L728 - https://github.com/emberjs/ember.js/blob/7819409b7b6559e9fc0300a29e66a16356fb67a7/packages/ember-testing/tests/helpers_test.js#L354-L425 These tests failed for us when running on Firefox or phantomjs… - https://github.com/cibernox/ember-native-dom-helpers/blob/master/tests/integration/fill-in-test.js - https://github.com/cibernox/ember-native-dom-helpers/blob/master/tests/integration/click-test.js …the focus part was the issue Test failure...

Per @robbiepitts ... FWIW, this is a good resource for TS compilation: https://github.com/glimmerjs/glimmer-build/blob/master/index.js

@danielchappell let me know if you have any ideas on getting TS to work in an addon.

@leizhao4 did you notice the example in the README that shows `keyEvent` ? https://github.com/cibernox/ember-native-dom-helpers#usage ```js keyEvent('.other-input', 'keyup', 40); // down arrow ```

Any update on using ember-inflector in ember-cli (without Ember Data)?

@andrewmp1 what do you think about initializing with `null` ?

@aars If I recall, I added the special "No Content" handler to accommodate behavior from JSONAPI::Resources gem in the Rails app I worked on while developing the library. Which should...

@andrewmp1 originally the different between an relationship with a promise and one without was our apps flow for creating new records. In that case we were adding relationships that were...