codecombat/test/app/lib/router.spec.coffee
2014-01-12 13:29:42 -08:00

10 lines
348 B
CoffeeScript

describe 'Router', ->
Router = require 'lib/Router'
xit 'caches the home view', ->
router = new Router()
router.openRoute('home')
#currentView doesn't exist
expect(router.cache['home']).toBe(router.currentView)
home = router.currentView
router.openRoute('home')
expect(router.cache['home']).toBe(router.currentView)