From e7873963c83efecf54539f332c163d306ca96d5e Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 9 Jan 2022 20:16:14 +0300 Subject: [PATCH] wip --- tests/commands/generate-guides.test.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/commands/generate-guides.test.js b/tests/commands/generate-guides.test.js index 7cec64b2..495c92c0 100644 --- a/tests/commands/generate-guides.test.js +++ b/tests/commands/generate-guides.test.js @@ -17,5 +17,10 @@ it('can generate channels.json', () => { encoding: 'utf8' }) const parsed = JSON.parse(json) - expect(parsed[0]).toMatchObject({}) + expect(parsed[0]).toMatchObject({ + id: 'AndorraTV.ad', + name: ['Andorra TV'], + logo: null, + country: 'AD' + }) })