removed unused spec file

This commit is contained in:
Carlos Jimenez 2018-07-31 12:15:31 +02:00
parent 0fe58f78b4
commit 6684642f31
1 changed files with 0 additions and 36 deletions

View File

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