removed autocomplete folder

This commit is contained in:
Dani Herrero 2017-09-20 14:23:53 +02:00
parent d8ba5ecdcb
commit 4b1e88cc1c
1 changed files with 0 additions and 25 deletions

View File

@ -1,25 +0,0 @@
import './autocomplete.js';
describe('Core', () => {
describe('Component mdlUpdate', () => {
let $componentController;
let $state;
beforeEach(() => {
angular.mock.module('client');
});
beforeEach(angular.mock.inject((_$componentController_, _$state_) => {
$componentController = _$componentController_;
$state = _$state_;
$state.params.id = '1234';
}));
it('should define and set address property', () => {
let controller = $componentController('vnAddressCreate', {$state: $state});
expect(controller.address.clientFk).toBe(1234);
expect(controller.address.enabled).toBe(true);
});
});
});