#1144 Update Dropdown Available Status Unit Test

This commit is contained in:
Sebastian
2020-10-16 17:29:46 +02:00
parent 04043e3fd8
commit 4a8034d8fb

View File

@@ -1,6 +1,9 @@
import { TestBed } from '@angular/core/testing';
import { DetailsFacade } from '@shelf-store/details';
import { KeyValueDTOOfStringAndString } from '@swagger/oms';
import {
KeyValueDTOOfStringAndString,
OrderCheckoutService,
} from '@swagger/oms';
import { ProcessingStatusNameMap } from '../constants';
import { ShelfActionHandlerService } from './shelf-action-handler.service';
import { ShelfOrderDetailsService } from './shelf-order-details.service';
@@ -19,6 +22,10 @@ fdescribe('ShelfOrderDetailsService', () => {
provide: ShelfActionHandlerService,
useValue: jasmine.createSpy('actionHandlerService'),
},
{
provide: OrderCheckoutService,
useValue: jasmine.createSpy('orderCheckoutService'),
},
],
});