UNPKG

ember-introjs

Version:
27 lines (23 loc) 768 B
import Application from '@ember/application'; import { run } from '@ember/runloop'; import { initialize } from '<%= dasherizedModulePrefix %>/instance-initializers/<%= dasherizedModuleName %>'; import { module, test } from 'qunit'; import destroyApp from '../../helpers/destroy-app'; module('<%= friendlyTestName %>', { 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); });