Update utils.test.js

This commit is contained in:
Aleksandr Statciuk 2022-01-25 17:51:26 +03:00
parent b013499dea
commit ed32e11c3b
1 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ it('can load valid config.js', () => {
it('can parse valid channels.xml', () => { it('can parse valid channels.xml', () => {
const file = fs.readFileSync('./tests/input/example.com.channels.xml', { encoding: 'utf-8' }) const file = fs.readFileSync('./tests/input/example.com.channels.xml', { encoding: 'utf-8' })
const channels = utils.parseChannels(file) const { channels } = utils.parseChannels(file)
expect(channels).toEqual([ expect(channels).toEqual([
{ {
name: '1 TV', name: '1 TV',
@ -51,7 +51,7 @@ it('can parse valid channels.xml', () => {
it('can convert object to xmltv string', () => { it('can convert object to xmltv string', () => {
const file = fs.readFileSync('./tests/input/example.com.channels.xml', { encoding: 'utf-8' }) const file = fs.readFileSync('./tests/input/example.com.channels.xml', { encoding: 'utf-8' })
const channels = utils.parseChannels(file) const { channels } = utils.parseChannels(file)
const programs = [ const programs = [
{ {
title: 'Program 1', title: 'Program 1',
@ -101,7 +101,7 @@ it('can convert object to xmltv string without categories', () => {
it('can convert object to xmltv string with multiple categories', () => { it('can convert object to xmltv string with multiple categories', () => {
const file = fs.readFileSync('./tests/input/example.com.channels.xml', { encoding: 'utf-8' }) const file = fs.readFileSync('./tests/input/example.com.channels.xml', { encoding: 'utf-8' })
const channels = utils.parseChannels(file) const { channels } = utils.parseChannels(file)
const programs = [ const programs = [
{ {
title: 'Program 1', title: 'Program 1',