Files
ember-cli-dunlop/tests/unit/initializers/ember-cli-dunlop-overrides-test.coffee
T
2017-12-21 11:42:41 +01:00

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