it('gets the artist info from cache', async () => {
      const artistInfo = factory<ArtistInfo>('artist-info')
      const hasCacheMock = this.mock(cache, 'has', true)
      const getCacheMock = this.mock(cache, 'get', artistInfo)
      const getMock = this.mock(http, 'get')