From 9c2b121f32459b35f3378fff9035a2c13d09a5d8 Mon Sep 17 00:00:00 2001 From: Mo Bitar Date: Thu, 16 Feb 2017 17:19:17 -0600 Subject: [PATCH] rm body tag test --- test/javascripts/controllers/HomeCtrl_spec.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/test/javascripts/controllers/HomeCtrl_spec.js b/test/javascripts/controllers/HomeCtrl_spec.js index a44ae7e93..0ae1e1650 100644 --- a/test/javascripts/controllers/HomeCtrl_spec.js +++ b/test/javascripts/controllers/HomeCtrl_spec.js @@ -3,7 +3,7 @@ describe("app.frontend", function() { beforeEach(module('app.frontend')); describe('Home Controller', function() { - + var scope; beforeEach(inject(function($rootScope, $controller, modelManager) { scope = $rootScope.$new(); @@ -13,10 +13,6 @@ describe("app.frontend", function() { }); })); - it('should have a body class', function() { - expect(scope.bodyClass).toEqual('app-body-class'); - }); - it('should have an All tag', function() { expect(scope.allTag).toBeDefined(); expect(scope.allTag.title).toEqual("All"); @@ -31,7 +27,7 @@ describe("app.frontend", function() { scope.tagsAddNew("testTag"); expect($modelManager.items).toContain("testTag"); }); - + }); });