it('search for a podcast by podcastid', async () => {
    mockFetch('test');
    mockFetch([{ test: 'test data' }]);
    const json = await (await rest.iTunes.getPodcast('427166321')).json();
    expect(fetch).toHaveBeenCalledTimes(1);