From d634892b0118c75e1d185c7b046cee8bcc130b4f Mon Sep 17 00:00:00 2001 From: "luan.lrt4@gmail.com" Date: Sun, 24 Apr 2022 22:58:29 -0300 Subject: [PATCH] chore: update tests --- test/index.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/index.js b/test/index.js index f9e86ce8..7b0aa775 100644 --- a/test/index.js +++ b/test/index.js @@ -40,9 +40,6 @@ async function performTests() { const ytmplaylist = await youtube.getPlaylist(ytmsearch?.results?.community_playlists[0].id, { client: 'YTMUSIC' }).catch((error) => error); assert(!(ytmplaylist instanceof Error), `should retrieve and parse playlist with YouTube Music`, ytmplaylist); - const lyrics = await youtube.getLyrics(Constants.test_song_id).catch((error) => error); - assert(!(lyrics instanceof Error), `should retrieve song lyrics`, lyrics); - const video = await downloadVideo(Constants.test_video_id, youtube).catch((error) => error); assert(!(video instanceof Error), `should download video (${Constants.test_video_id})`, video); } @@ -78,4 +75,4 @@ function assert(outcome, description, data) { return outcome; } -performTests(); \ No newline at end of file +performTests();