travis-web/tests/unit/initializers/config-test.coffee
2015-02-03 09:53:42 +01:00

20 lines
479 B
CoffeeScript

`import Ember from 'ember'`
`import { initialize } from 'travis/initializers/config'`
container = null
application = null
module 'ConfigInitializer',
setup: ->
Ember.run ->
application = Ember.Application.create()
container = application.__container__
application.deferReadiness()
# Replace this with your real tests.
test 'it works', ->
initialize container, application
# you would normally confirm the results of the initializer here
ok true