mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:51:36 +08:00
20 lines
393 B
JavaScript
20 lines
393 B
JavaScript
import Wizard from 'wizard/wizard';
|
|
import initializer from 'wizard/initializers/load-helpers';
|
|
|
|
let app;
|
|
let started = false;
|
|
|
|
export default function() {
|
|
Ember.run(() => app = Wizard.create({ rootElement: '#ember-testing' }));
|
|
|
|
if (!started) {
|
|
initializer.initialize(app);
|
|
app.start();
|
|
started = true;
|
|
}
|
|
app.setupForTesting();
|
|
app.injectTestHelpers();
|
|
return app;
|
|
}
|
|
|