From 6684642f31c7b37c2648e31f9a915f379ddb141b Mon Sep 17 00:00:00 2001 From: Carlos Jimenez <=> Date: Tue, 31 Jul 2018 12:15:31 +0200 Subject: [PATCH] removed unused spec file --- client/client/src/index/index.spec.js | 36 --------------------------- 1 file changed, 36 deletions(-) delete mode 100644 client/client/src/index/index.spec.js diff --git a/client/client/src/index/index.spec.js b/client/client/src/index/index.spec.js deleted file mode 100644 index 5d89e513a..000000000 --- a/client/client/src/index/index.spec.js +++ /dev/null @@ -1,36 +0,0 @@ -import './index'; - -describe('Client', () => { - describe('Component vnClientIndex', () => { - let $componentController; - let controller; - - beforeEach(() => { - angular.mock.module('client'); - }); - - beforeEach(angular.mock.inject(_$componentController_ => { - $componentController = _$componentController_; - controller = $componentController('vnClientIndex'); - })); - - it('should define and set clientSelected property as null', () => { - expect(controller.clientSelected).toEqual(null); - }); - - // describe('search()', () => { - // it(`should set model's search to the search input`, () => { - // controller.model.search = 'batman'; - // let index = { - // filter: {}, - // accept: () => { - // return 'accepted'; - // } - // }; - // controller.search(index); - - // expect(index.filter.search).toBe('batman'); - // }); - // }); - }); -});