From 08805b6470dd65fdcdc0da3d5df290e9eb4f775b Mon Sep 17 00:00:00 2001 From: Michael Schmatz Date: Sun, 12 Jan 2014 13:29:42 -0800 Subject: [PATCH] Disabled outdated router test --- test/app/lib/router.spec.coffee | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/app/lib/router.spec.coffee b/test/app/lib/router.spec.coffee index 43fe3f9c5..97bf9e8e6 100644 --- a/test/app/lib/router.spec.coffee +++ b/test/app/lib/router.spec.coffee @@ -1,8 +1,9 @@ describe 'Router', -> Router = require 'lib/Router' - it 'caches the home view', -> + 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')