I\'ve written up an application that uses Ember Data. It\'s passing all it\'s tests and running as expected, however, something is causing a repeated deprecation warning to
You can just do Ember.deprecate = function(){} in your application.js file and that should disable ember deprecation warnings.
Ember.deprecate = function(){}