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; let aclService; beforeEach(ngModule('claim')); beforeEach(angular.mock.inject(($componentController, $rootScope) => { $scope = $rootScope.$new(); $scope.watcher = watcher; $scope.model = crudModel; aclService = {hasAny: () => true}; controller = $componentController('vnClaimDevelopment', {$scope, aclService}); })); describe('onSubmit()', () => { it(`should redirect to 'claim.card.action' state`, () => { spyOn(controller.$state, 'go'); controller.onSubmit(); expect(controller.$state.go).toHaveBeenCalledWith('claim.card.action'); }); }); }); });