it('fetches the album info', async () => {
      const album = albumStore.syncWithVault(factory<Album>('album', { id: 42 }))[0]
      const albumInfo = factory<AlbumInfo>('album-info')
      const getMock = this.mock(http, 'get').mockResolvedValue(albumInfo)
      const hasCacheMock = this.mock(cache, 'has', false)