salix/modules/zone/front/create/index.spec.js

41 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-09-19 13:05:07 +00:00
import './index';
2018-12-27 11:54:16 +00:00
import watcher from 'core/mocks/watcher';
2018-09-19 13:05:07 +00:00
2020-02-26 06:02:03 +00:00
describe('Zone Component vnZoneCreate', () => {
2019-04-26 14:10:51 +00:00
let $scope;
let $state;
let controller;
2020-02-25 07:08:13 +00:00
beforeEach(ngModule('zone'));
2019-04-26 14:10:51 +00:00
beforeEach(angular.mock.inject(($componentController, $rootScope, _$state_) => {
$scope = $rootScope.$new();
$state = _$state_;
$scope.watcher = watcher;
$scope.watcher.submit = () => {
return {
then: callback => {
callback({data: {id: 1234}});
}
2018-09-24 12:51:27 +00:00
};
2019-04-26 14:10:51 +00:00
};
2020-03-18 11:55:22 +00:00
const $element = angular.element('<vn-zone-create></vn-zone-create>');
controller = $componentController('vnZoneCreate', {$element, $scope});
2019-04-26 14:10:51 +00:00
}));
2018-09-19 13:05:07 +00:00
2019-04-26 14:10:51 +00:00
describe('onSubmit()', () => {
it(`should call submit() on the watcher then expect a callback`, () => {
2020-02-26 12:22:52 +00:00
jest.spyOn($state, 'go');
2018-09-19 13:05:07 +00:00
2019-04-26 14:10:51 +00:00
controller.zone = {
name: 'Zone One'
};
2018-09-19 13:05:07 +00:00
2019-04-26 14:10:51 +00:00
controller.onSubmit();
2018-09-19 13:05:07 +00:00
2019-04-26 14:10:51 +00:00
expect(controller.$state.go).toHaveBeenCalledWith('zone.card.location', Object({id: 1234}));
2018-09-19 13:05:07 +00:00
});
});
});
2019-04-26 14:10:51 +00:00