Drop store initializer

Fixes #39
This commit is contained in:
Matthew Dillon 2015-11-12 13:49:55 -07:00
parent 2d2950ed33
commit e5dc115607
2 changed files with 0 additions and 31 deletions

View file

@ -1,8 +0,0 @@
export function initialize(container, application) {
application.inject('component', 'store', 'service:store');
}
export default {
name: 'component-store',
initialize: initialize
};

View file

@ -1,23 +0,0 @@
import Ember from 'ember';
import { initialize } from '../../../initializers/component-store';
import { module, test } from 'qunit';
var container, application;
module('Unit | Initializer | component store', {
beforeEach: function() {
Ember.run(function() {
application = Ember.Application.create();
container = application.__container__;
application.deferReadiness();
});
}
});
// Replace this with your real tests.
test('it works', function(assert) {
initialize(container, application);
// you would normally confirm the results of the initializer here
assert.ok(true);
});