discourse/test/javascripts/helpers/component-test.js.es6

34 lines
1.3 KiB
Plaintext
Raw Normal View History

import AppEvents from 'discourse/lib/app-events';
import createStore from 'helpers/create-store';
import { loadAllHelpers } from 'discourse/initializers/load-all-helpers';
export default function(name, opts) {
opts = opts || {};
test(name, function(assert) {
const appEvents = AppEvents.create();
this.container.register('site-settings:main', Discourse.SiteSettings, { instantiate: false });
this.container.register('app-events:main', appEvents, { instantiate: false });
this.container.register('capabilities:main', Ember.Object);
this.container.register('site:main', Discourse.Site.current(), { instantiate: false });
this.container.injection('component', 'siteSettings', 'site-settings:main');
this.container.injection('component', 'appEvents', 'app-events:main');
this.container.injection('component', 'capabilities', 'capabilities:main');
this.siteSettings = Discourse.SiteSettings;
loadAllHelpers();
if (opts.setup) {
const store = createStore();
this.currentUser = Discourse.User.create();
this.container.register('store:main', store, { instantiate: false });
this.container.register('current-user:main', this.currentUser, { instantiate: false });
opts.setup.call(this, store);
}
andThen(() => this.render(opts.template));
andThen(() => opts.test.call(this, assert));
});
}