You can re-register it in the container.
App.__container__.register('adapter:application', DS.FixtureAdapter);
And depending on how you run your tests, you can insert directly into the application namespace if you call App.reset().
App.ApplicationAdapter = DS.FixtureAdapter;
source
share