Added luna template and deps

Change-Id: Idd3dcdee3a377a75733c333d4a754632111e17ee
diff --git a/src/app/core/nav/nav.spec.ts b/src/app/core/nav/nav.spec.ts
index fbed8ea..6a70f4c 100644
--- a/src/app/core/nav/nav.spec.ts
+++ b/src/app/core/nav/nav.spec.ts
@@ -39,7 +39,7 @@
   }));
 
   it('should render a list of routes', () => {
-    const routes = $('.nav ul li', element);
+    const routes = $('.nav li:not(.nav-info)', element);
     expect(routes.length).toBe(2);
   });
 
@@ -51,7 +51,7 @@
       ]}
     ];
     scope.$apply();
-    const childRouteContainer = $('.child-routes', element);
+    const childRouteContainer = $('.nav-second li', element);
     expect(childRouteContainer.length).toBe(1);
   });
 });