You looked up the 'hotels' relationship on '<TimeTravel.Trip:ember276:2>' but some of the associated records were not loaded. Either make sure they are all loaded together with the parent record, or specify that the relationship is async (`DS.attr({ async: true })
I think this worked in Ember Data pre-1.0, but I’m wondering if there’s some way to get the fixture adapter to do this correctly?
My solution for this is to manually push any fixtures into the store, bypassing the need for a hit to the adapter. Take a look at http://amalgamated.io/emberjs-and-fixtures for a simple initializer to handle this.