27 lines
741 B
JavaScript
27 lines
741 B
JavaScript
import Application from '@ember/application';
|
|
import { run } from '@ember/runloop';
|
|
import { initialize } from 'ambition-crm/instance-initializers/state';
|
|
import { module, test } from 'qunit';
|
|
import destroyApp from '../../helpers/destroy-app';
|
|
|
|
module('Unit | Instance Initializer | state', {
|
|
beforeEach() {
|
|
run(() => {
|
|
this.application = Application.create();
|
|
this.appInstance = this.application.buildInstance();
|
|
});
|
|
},
|
|
afterEach() {
|
|
run(this.appInstance, 'destroy');
|
|
destroyApp(this.application);
|
|
}
|
|
});
|
|
|
|
// Replace this with your real tests.
|
|
test('it works', function(assert) {
|
|
initialize(this.appInstance);
|
|
|
|
// you would normally confirm the results of the initializer here
|
|
assert.ok(true);
|
|
});
|