author | ymh <ymh.work@gmail.com> |
Thu, 02 Mar 2017 15:09:17 +0100 | |
changeset 526 | cdaf9dfb5dfd |
parent 517 | 3143195e91b4 |
child 537 | d2e6ee099125 |
permissions | -rw-r--r-- |
import Ember from 'ember'; import Application from '../../app'; import config from '../../config/environment'; export default function startApp(attrs) { let application; let attributes = Ember.merge({}, config.APP); attributes = Ember.merge(attributes, attrs); // use defaults, but you can override; Ember.run(() => { application = Application.create(attributes); application.setupForTesting(); application.injectTestHelpers(); }); return application; }