removed unused spec file
This commit is contained in:
parent
0fe58f78b4
commit
6684642f31
|
@ -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');
|
||||
// });
|
||||
// });
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue