2019-04-08 07:01:10 +00:00
|
|
|
import './index.js';
|
|
|
|
import watcher from 'core/mocks/watcher';
|
|
|
|
import crudModel from 'core/mocks/crud-model';
|
|
|
|
|
|
|
|
describe('Claim', () => {
|
|
|
|
describe('Component vnClaimDevelopment', () => {
|
|
|
|
let controller;
|
|
|
|
let $scope;
|
|
|
|
|
2019-10-24 22:53:53 +00:00
|
|
|
beforeEach(ngModule('claim'));
|
2019-04-08 07:01:10 +00:00
|
|
|
|
2020-07-23 14:46:16 +00:00
|
|
|
beforeEach(inject(($componentController, $rootScope) => {
|
2019-04-08 07:01:10 +00:00
|
|
|
$scope = $rootScope.$new();
|
|
|
|
$scope.watcher = watcher;
|
|
|
|
$scope.model = crudModel;
|
2020-03-16 10:58:14 +00:00
|
|
|
const $element = angular.element('<vn-claim-development></vn-claim-development>');
|
|
|
|
controller = $componentController('vnClaimDevelopment', {$element, $scope});
|
2019-04-08 07:01:10 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
describe('onSubmit()', () => {
|
|
|
|
it(`should redirect to 'claim.card.action' state`, () => {
|
2020-03-16 10:58:14 +00:00
|
|
|
jest.spyOn(controller.aclService, 'hasAny').mockReturnValue(true);
|
2020-02-26 12:22:52 +00:00
|
|
|
jest.spyOn(controller.$state, 'go');
|
2020-03-16 10:58:14 +00:00
|
|
|
|
2019-04-08 07:01:10 +00:00
|
|
|
controller.onSubmit();
|
|
|
|
|
|
|
|
expect(controller.$state.go).toHaveBeenCalledWith('claim.card.action');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|