0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/tests/helpers/start-app.js

21 lines
558 B
JavaScript

import Ember from 'ember';
import Application from '../../app';
import Router from '../../router';
import config from '../../config/environment';
function startApp(attrs) {
var application,
attributes = Ember.merge({}, config.APP);
attributes = Ember.merge(attributes, attrs); // use defaults, but you can override;
Ember.run(function () {
application = Application.create(attributes);
application.setupForTesting();
application.injectTestHelpers();
});
return application;
}
export default startApp;