21 lines
574 B
CoffeeScript
21 lines
574 B
CoffeeScript
import Ember from 'ember'
|
|
import { initialize } from 'dummy/initializers/ember-cli-dunlop-overrides'
|
|
import { module, test } from 'qunit'
|
|
|
|
application = null
|
|
registry = null
|
|
|
|
module 'Unit | Initializer | ember cli dunlop overrides',
|
|
beforeEach: ->
|
|
Ember.run ->
|
|
application = Ember.Application.create()
|
|
registry = application.registry
|
|
application.deferReadiness()
|
|
|
|
# Replace this with your real tests.
|
|
test 'it works', (assert) ->
|
|
initialize registry, application
|
|
|
|
# you would normally confirm the results of the initializer here
|
|
assert.ok true
|