Fix artist name in track search

This commit is contained in:
Renato "Lond" Cerqueira 2021-01-17 16:22:46 +01:00
parent e5a9da78d6
commit 248e42f841
2 changed files with 2 additions and 1 deletions

View file

@ -11,6 +11,7 @@ describe('ytmusic', function(){
it('should find track by ID', async function (){
const result = await ytmusic.lookupId('9zrYXvUXiQk', 'track');
result.name.should.equal('One Vision (Remastered 2011)');
result.artist.name.should.equal('Queen');
});
});
describe('search', () => {