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