1234567891011121314151617181920212223 |
- import Ember from 'ember';
- import { initialize } from 'misago/initializers/settings';
- var container, application;
- module('SettingsInitializer', {
- 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);
- });
|