it('should have displayDefaultOptions property set to true for edit modal when location.id exist and location.default is set to false', () => {
            let clonedObject = Object.assign({id: 'id', default: false}, itemMock);
            spyOn(LocationModel, 'getItem').and.returnValue(clonedObject);
            locationModal = new LocationModal(ModalModel, LocationModel, FormService);