added separation between describes

This commit is contained in:
Carlos Jimenez 2018-07-31 11:54:54 +02:00
parent 1858cea710
commit 6f78bc61db
1 changed files with 3 additions and 0 deletions

View File

@ -37,6 +37,7 @@ describe('Client', () => {
$httpBackend.when('GET', /\/locale\/\w+\/[a-z]{2}\.json/).respond({}); $httpBackend.when('GET', /\/locale\/\w+\/[a-z]{2}\.json/).respond({});
controller = $componentController('vnClientCreditCreate', {$scope: $scope}, {$state: $state}); controller = $componentController('vnClientCreditCreate', {$scope: $scope}, {$state: $state});
})); }));
describe('onSubmit()', () => { describe('onSubmit()', () => {
it('should perform a query to check (GET) if the client has an active recovery', () => { it('should perform a query to check (GET) if the client has an active recovery', () => {
$httpBackend.whenGET(`/client/api/Recoveries/101/hasActiveRecovery`).respond(true); $httpBackend.whenGET(`/client/api/Recoveries/101/hasActiveRecovery`).respond(true);
@ -65,6 +66,7 @@ describe('Client', () => {
expect(controller.addCredit).toHaveBeenCalledWith(); expect(controller.addCredit).toHaveBeenCalledWith();
}); });
}); });
describe('returnDialog()', () => { describe('returnDialog()', () => {
it('should call addCredit() when is called with ACCEPT', () => { it('should call addCredit() when is called with ACCEPT', () => {
spyOn(controller, 'addCredit'); spyOn(controller, 'addCredit');
@ -73,6 +75,7 @@ describe('Client', () => {
expect(controller.addCredit).toHaveBeenCalledWith(); expect(controller.addCredit).toHaveBeenCalledWith();
}); });
}); });
describe('addCredit()', () => { describe('addCredit()', () => {
it('should call the function go() on $state to go to the credit list', () => { it('should call the function go() on $state to go to the credit list', () => {
spyOn($state, 'go'); spyOn($state, 'go');