2017-12-15 21:39:18 +00:00
|
|
|
import { run } from '@ember/runloop';
|
|
|
|
import { merge } from '@ember/polyfills';
|
2017-09-19 14:47:10 +00:00
|
|
|
import Application from '../../app';
|
|
|
|
import config from '../../config/environment';
|
2018-01-31 23:27:29 +00:00
|
|
|
import registerPowerSelectHelpers from 'ember-power-select/test-support/helpers';
|
2017-10-11 17:12:10 +00:00
|
|
|
|
|
|
|
registerPowerSelectHelpers();
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
export default function startApp(attrs) {
|
2017-12-15 21:39:18 +00:00
|
|
|
let attributes = merge({}, config.APP);
|
|
|
|
attributes = merge(attributes, attrs); // use defaults, but you can override;
|
2017-09-19 14:47:10 +00:00
|
|
|
|
2017-12-15 21:39:18 +00:00
|
|
|
return run(() => {
|
2017-09-19 14:47:10 +00:00
|
|
|
let application = Application.create(attributes);
|
|
|
|
application.setupForTesting();
|
|
|
|
application.injectTestHelpers();
|
|
|
|
return application;
|
|
|
|
});
|
|
|
|
}
|