cms/app-client/tests/helpers/start-app.js
author ymh <ymh.work@gmail.com>
Wed, 15 Feb 2017 22:53:45 +0100
changeset 511 fbf4e1afab01
parent 456 3a32d2f57429
child 537 d2e6ee099125
permissions -rw-r--r--
upgrade ember version

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;
}