salix/modules/client/front/greuge/create/index.spec.js

37 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-05-23 12:26:51 +00:00
import './index';
2018-01-15 08:39:06 +00:00
describe('Client', () => {
describe('Component vnClientGreugeCreate', () => {
let $scope;
let $state;
let controller;
beforeEach(ngModule('client'));
2018-01-15 08:39:06 +00:00
2020-07-23 14:46:16 +00:00
beforeEach(inject(($componentController, $rootScope, _$state_) => {
2018-01-15 08:39:06 +00:00
$scope = $rootScope.$new();
$state = _$state_;
$scope.watcher = {
submit: () => {
return {
then: callback => {
callback();
}
};
}
};
2020-03-17 10:17:50 +00:00
const $element = angular.element('<vn-client-greuge-create></vn-client-greuge-create>');
controller = $componentController('vnClientGreugeCreate', {$element, $scope});
2018-01-15 08:39:06 +00:00
}));
describe('onSubmit()', () => {
it('should call the function go() on $state to go to the greuges list', () => {
2020-02-26 12:22:52 +00:00
jest.spyOn($state, 'go');
2018-01-15 08:39:06 +00:00
controller.onSubmit();
expect(controller.$state.go).toHaveBeenCalledWith('client.card.greuge.index');
2018-01-15 08:39:06 +00:00
});
});
});
});