ember-cli-sliding-menu
Version:
The convenient sliding-menu component
24 lines (18 loc) • 592 B
JavaScript
import Ember from 'ember';
import { initialize } from 'ember-cli-sliding-menu/initializers/inject-progress-to-controllers';
var container, application;
module('InjectProgressToControllersInitializer', {
setup: function() {
Ember.run(function() {
application = Ember.Application.create();
container = application.__container__;
application.deferReadiness();
});
}
});
// Replace this with your real tests.
test('it works', function() {
initialize(container, application);
// you would normally confirm the results of the initializer here
ok(true);
});