From c26ea4bd1c1bc820144fdeb369f8b3c3bb68ae28 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 10 Aug 2022 03:41:37 +0300 Subject: [PATCH] Update validate.test.js --- tests/commands/playlist/validate.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/commands/playlist/validate.test.js b/tests/commands/playlist/validate.test.js index 28089e010..9b5aefb49 100644 --- a/tests/commands/playlist/validate.test.js +++ b/tests/commands/playlist/validate.test.js @@ -13,7 +13,7 @@ it('show an error if channel name in the blocklist', () => { } catch (err) { expect(err.status).toBe(1) expect(err.stdout).toBe( - `\n> playlist:validate\n> node scripts/commands/playlist/validate.js "tests/__data__/input/streams/us_blocked.m3u"\n\nloading blocklist...\nfound 4 records\n\ntests/__data__/input/streams/us_blocked.m3u\n 2 error "Fox Sports 2 Asia" is on the blocklist due to claims of copyright holders (https://github.com/iptv-org/iptv/issues/0000)\n\n1 problems (1 errors, 0 warnings)\n` + `\n> playlist:validate\n> node scripts/commands/playlist/validate.js\n\nloading blocklist...\nfound 4 records\n\ntests/__data__/input/streams/us_blocked.m3u\n 2 error "Fox Sports 2 Asia" is on the blocklist due to claims of copyright holders (https://github.com/iptv-org/iptv/issues/0000)\n\n1 problems (1 errors, 0 warnings)\n` ) } }) @@ -27,6 +27,6 @@ it('show a warning if channel has wrong id', () => { ) expect(stdout).toBe( - `\n> playlist:validate\n> node scripts/commands/playlist/validate.js "tests/__data__/input/streams/wrong_id.m3u"\n\nloading blocklist...\nfound 4 records\n\ntests/__data__/input/streams/wrong_id.m3u\n 2 warning "qib22lAq1L.us" is not in the database\n\n1 problems (0 errors, 1 warnings)\n` + `\n> playlist:validate\n> node scripts/commands/playlist/validate.js\n\nloading blocklist...\nfound 4 records\n\ntests/__data__/input/streams/wrong_id.m3u\n 2 warning "qib22lAq1L.us" is not in the database\n\n1 problems (0 errors, 1 warnings)\n` ) })