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

20 lines
481 B
CoffeeScript

`import Ember from 'ember'`
`import { initialize } from 'travis/initializers/storage'`
container = null
application = null
module 'StorageInitializer',
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