2017-09-19 14:47:10 +00:00
|
|
|
import Ember from 'ember';
|
|
|
|
import Application from '../../app';
|
|
|
|
import config from '../../config/environment';
|
2017-10-11 17:12:10 +00:00
|
|
|
import registerPowerSelectHelpers from '../../tests/helpers/ember-power-select';
|
|
|
|
|
|
|
|
registerPowerSelectHelpers();
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
export default function startApp(attrs) {
|
|
|
|
let attributes = Ember.merge({}, config.APP);
|
|
|
|
attributes = Ember.merge(attributes, attrs); // use defaults, but you can override;
|
|
|
|
|
|
|
|
return Ember.run(() => {
|
|
|
|
let application = Application.create(attributes);
|
|
|
|
application.setupForTesting();
|
|
|
|
application.injectTestHelpers();
|
|
|
|
return application;
|
|
|
|
});
|
|
|
|
}
|