refactor in all client specs to next describes accordingly
This commit is contained in:
parent
0f6e81ce83
commit
352e68ed58
|
@ -1,5 +1,6 @@
|
|||
import './address-create.js';
|
||||
|
||||
describe('Client', () => {
|
||||
describe('Component vnAddressCreate', () => {
|
||||
let $componentController;
|
||||
let $state;
|
||||
|
@ -21,3 +22,4 @@ describe('Component vnAddressCreate', () => {
|
|||
expect(controller.address.enabled).toBe(true);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import './address-edit.js';
|
||||
|
||||
describe('Client', () => {
|
||||
describe('Component vnAddressEdit', () => {
|
||||
let $componentController;
|
||||
let $state;
|
||||
|
@ -19,3 +20,4 @@ describe('Component vnAddressEdit', () => {
|
|||
expect(controller.address.id).toBe(1234);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import './billing-data.js';
|
||||
|
||||
describe('Client', () => {
|
||||
describe('Component vnClientBillingData', () => {
|
||||
let $componentController;
|
||||
let $httpBackend;
|
||||
|
@ -78,3 +79,4 @@ describe('Component vnClientBillingData', () => {
|
|||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import './card.js';
|
||||
|
||||
describe('Client', () => {
|
||||
describe('Component vnClientCard', () => {
|
||||
let $componentController;
|
||||
let $scope;
|
||||
|
@ -19,3 +20,4 @@ describe('Component vnClientCard', () => {
|
|||
expect(controller.client).toBe(null);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import './create.js';
|
||||
|
||||
describe('Client', () => {
|
||||
describe('Component vnClientCreate', () => {
|
||||
let $componentController;
|
||||
let $scope;
|
||||
|
@ -40,3 +41,4 @@ describe('Component vnClientCreate', () => {
|
|||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import './index.js';
|
||||
|
||||
describe('Client', () => {
|
||||
describe('Component vnClientIndex', () => {
|
||||
let $componentController;
|
||||
|
||||
|
@ -31,3 +32,4 @@ describe('Component vnClientIndex', () => {
|
|||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import './note-create.js';
|
||||
|
||||
describe('Client', () => {
|
||||
describe('Component vnNoteCreate', () => {
|
||||
let $componentController;
|
||||
let $state;
|
||||
|
@ -20,3 +21,4 @@ describe('Component vnNoteCreate', () => {
|
|||
expect(controller.note.client).toBe(undefined);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import './notes.js';
|
||||
|
||||
describe('Client', () => {
|
||||
describe('Component vnClientNotes', () => {
|
||||
let $componentController;
|
||||
let $state;
|
||||
|
@ -49,3 +50,4 @@ describe('Component vnClientNotes', () => {
|
|||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import './search-panel.js';
|
||||
|
||||
describe('Client', () => {
|
||||
describe('Component vnClientSearchPanel', () => {
|
||||
let $componentController;
|
||||
let $window;
|
||||
|
@ -35,3 +36,4 @@ describe('Component vnClientSearchPanel', () => {
|
|||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
import './autocomplete.js';
|
||||
|
||||
describe('Core', () => {
|
||||
describe('Component mdlUpdate', () => {
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue