it('search an artist albums by artistid', async () => {
    mockFetch('test');
    mockFetch([{ test: 'test data' }]);
    const json = await (await rest.iTunes.artistAlbumsSearch('3296287')).json();
    expect(fetch).toHaveBeenCalledTimes(1);