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'); - // }); - // }); - }); -});