mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-08 17:53:11 +00:00
19 lines
444 B
JavaScript
19 lines
444 B
JavaScript
![]() |
import Ember from 'ember';
|
||
|
import Application from '../../app';
|
||
|
import config from '../../config/environment';
|
||
|
|
||
|
export default function startApp(attrs) {
|
||
|
let application;
|
||
|
|
||
|
// use defaults, but you can override
|
||
|
let attributes = Ember.assign({}, config.APP, attrs);
|
||
|
|
||
|
Ember.run(() => {
|
||
|
application = Application.create(attributes);
|
||
|
application.setupForTesting();
|
||
|
application.injectTestHelpers();
|
||
|
});
|
||
|
|
||
|
return application;
|
||
|
}
|