open-nomad/ui/tests/helpers/start-app.js

20 lines
621 B
JavaScript
Raw Normal View History

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';
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 = merge({}, config.APP);
attributes = merge(attributes, attrs); // use defaults, but you can override;
2017-09-19 14:47:10 +00:00
return run(() => {
2017-09-19 14:47:10 +00:00
let application = Application.create(attributes);
application.setupForTesting();
application.injectTestHelpers();
return application;
});
}