refs #5284 test createClaim
gitea/salix/pipeline/head There was a failure building this commit
Details
gitea/salix/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
15d7139bc5
commit
90268a79b0
|
@ -45,6 +45,7 @@ describe('Ticket', () => {
|
||||||
$scope.model = crudModel;
|
$scope.model = crudModel;
|
||||||
$scope.editDiscount = {relocate: () => {}, hide: () => {}};
|
$scope.editDiscount = {relocate: () => {}, hide: () => {}};
|
||||||
$scope.editPricePopover = {relocate: () => {}};
|
$scope.editPricePopover = {relocate: () => {}};
|
||||||
|
$scope.claimConfirm = {show: () => {}};
|
||||||
$httpBackend = _$httpBackend_;
|
$httpBackend = _$httpBackend_;
|
||||||
Object.defineProperties($state.params, {
|
Object.defineProperties($state.params, {
|
||||||
id: {
|
id: {
|
||||||
|
@ -61,6 +62,10 @@ describe('Ticket', () => {
|
||||||
controller.card = {reload: () => {}};
|
controller.card = {reload: () => {}};
|
||||||
controller._ticket = ticket;
|
controller._ticket = ticket;
|
||||||
controller._sales = sales;
|
controller._sales = sales;
|
||||||
|
controller.ticketConfig = [
|
||||||
|
{daysForWarningClaim: 2}
|
||||||
|
];
|
||||||
|
$httpBackend.expect('GET', 'TicketConfigs').respond(200);
|
||||||
}));
|
}));
|
||||||
|
|
||||||
describe('ticket() setter', () => {
|
describe('ticket() setter', () => {
|
||||||
|
@ -113,7 +118,6 @@ describe('Ticket', () => {
|
||||||
it('should make an HTTP GET query and return the worker mana', () => {
|
it('should make an HTTP GET query and return the worker mana', () => {
|
||||||
controller.edit = {};
|
controller.edit = {};
|
||||||
const expectedAmount = 250;
|
const expectedAmount = 250;
|
||||||
|
|
||||||
$httpBackend.expect('GET', 'Tickets/1/getSalesPersonMana').respond(200, expectedAmount);
|
$httpBackend.expect('GET', 'Tickets/1/getSalesPersonMana').respond(200, expectedAmount);
|
||||||
$httpBackend.expect('GET', 'Sales/usesMana').respond(200);
|
$httpBackend.expect('GET', 'Sales/usesMana').respond(200);
|
||||||
$httpBackend.expect('GET', 'WorkerManas/getCurrentWorkerMana').respond(200, expectedAmount);
|
$httpBackend.expect('GET', 'WorkerManas/getCurrentWorkerMana').respond(200, expectedAmount);
|
||||||
|
@ -279,6 +283,17 @@ describe('Ticket', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('createClaim()', () => {
|
describe('createClaim()', () => {
|
||||||
|
it('should perform a query and call windows open', () => {
|
||||||
|
jest.spyOn(controller.$.claimConfirm, 'show').mockReturnThis();
|
||||||
|
|
||||||
|
controller.createClaim();
|
||||||
|
$httpBackend.flush();
|
||||||
|
|
||||||
|
expect(controller.$.claimConfirm);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('onCreateClaimAccepted()', () => {
|
||||||
it('should perform a query and call windows open', () => {
|
it('should perform a query and call windows open', () => {
|
||||||
jest.spyOn(controller, 'resetChanges').mockReturnThis();
|
jest.spyOn(controller, 'resetChanges').mockReturnThis();
|
||||||
jest.spyOn(controller.$state, 'go').mockReturnThis();
|
jest.spyOn(controller.$state, 'go').mockReturnThis();
|
||||||
|
|
Loading…
Reference in New Issue