Based on answer from @Vencovsky I think today answer will be:
import { renderHook } from '@testing-library/react-hooks'
import { useGetUserDataQuery } from '../../services';
test('should working properly', () => {
const { result } = renderHook(() => useGetUserDataQuery())
expect(result.current.result).toBe("Idk what");
})