From 95692110dea1df22a89fb3f84db60bb64ee33fb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Epu=C3=B1an?= Date: Wed, 27 Dec 2023 11:30:28 -0300 Subject: [PATCH] Updated torrent.js output test (#746) * fix: new domain for YTS API `.ag => .mx` * fix: update torrent.test.js * fix: test output updated * fix: update test output --- test/torrent.test.js | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/test/torrent.test.js b/test/torrent.test.js index 8815204..1496c08 100644 --- a/test/torrent.test.js +++ b/test/torrent.test.js @@ -18,10 +18,13 @@ test('Torrent de Titanic', async t => { .query({ limit: 5, query_term: 'titanic' }) .reply(200, { data: { - movie_count: 2, + movie_count: 20, movies: [ - { url: 'https://yts.mx/movie/titanic-1997', title: 'Titanic', year: 1997, rating: 7.8 }, - { url: 'https://yts.mx/movie/titanic-1953', title: 'Titanic', year: 1953, rating: 7.2 } + { url: 'https://yts.mx/movies/titanic-25-years-later-with-james-cameron-2023', title: 'Titanic: 25 Years Later with James Cameron', year: 2023, rating: 6.5 }, + { url: 'https://yts.mx/movies/titanic-waltz-1965', title: 'Titanic Waltz', year: 1965, rating: 8.6 }, + { url: 'https://yts.mx/movies/the-blind-man-who-did-not-want-to-see-titanic-2021', title: 'The Blind Man Who Did Not Want to See Titanic', year: 2021, rating: 7.5 }, + { url: 'https://yts.mx/movies/titanic-666-2022', title: 'Titanic 666', year: 2022, rating: 3.2 }, + { url: 'https://yts.mx/movies/the-chambermaid-on-the-titanic-1997', title: 'The Chambermaid on the Titanic', year: 1997, rating: 6.6 } ] } }) @@ -37,9 +40,12 @@ test('Torrent de Titanic', async t => { // test response messages of hubot t.deepEqual(hubotMessage1, ['hubot', 'Esperando respuesta de YTS YIFY... :loading:']) - const text = `Encontradas 2 coincidencias: - - -Todos los resultados en **` + const text = `Encontradas 20 coincidencias: + + + + + +Todos los resultados en **` t.deepEqual(hubotMessage2, ['hubot', text]) })