import './index.js'; describe('Item', () => { describe('Component vnItemCreate', () => { let $componentController; let $scope; let $state; let controller; beforeEach(ngModule('item')); beforeEach(angular.mock.inject((_$componentController_, $rootScope, _$state_) => { $componentController = _$componentController_; $scope = $rootScope.$new(); $state = _$state_; $scope.watcher = { submit: () => { return { then: callback => { callback({data: {id: 1}}); } }; } }; controller = $componentController('vnItemCreate', {$scope: $scope}); })); describe('onSubmit()', () => { it(`should call submit() on the watcher then expect a callback`, () => { spyOn($state, 'go'); controller.onSubmit(); expect(controller.$state.go).toHaveBeenCalledWith('item.card.basicData', {id: 1}); }); }); }); });