rm body tag test

This commit is contained in:
Mo Bitar
2017-02-16 17:19:17 -06:00
parent 253710acb9
commit 9c2b121f32

View File

@@ -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");
});
});
});