UNPKG

ember-introjs

Version:
27 lines (22 loc) 704 B
import Application from '@ember/application'; import { run } from '@ember/runloop'; import { initialize } from '<%= dasherizedModulePrefix %>/initializers/<%= dasherizedModuleName %>'; import { module, test } from 'qunit'; import destroyApp from '../../helpers/destroy-app'; module('<%= friendlyTestName %>', { beforeEach() { run(() => { this.application = Application.create(); this.application.deferReadiness(); }); }, afterEach() { destroyApp(this.application); } }); // Replace this with your real tests. test('it works', function(assert) { initialize(this.application); // you would normally confirm the results of the initializer here assert.ok(true); });