Rate:
Category:
const { parser, url } = require('./startimestv.com.config.js') const dayjs = require('dayjs') const utc = require('dayjs/plugin/utc') const customParseFormat = require('dayjs/plugin/customParseFormat') dayjs.extend(customParseFormat) dayjs.extend(utc) const date = dayjs.utc('2024-12-10', 'YYYY-MM-DD').startOf('d') const channel = { site_id: '1023102509', xmltv_id: 'ZeeOneAfrica.za' } it('can generate valid url', () => { expect(url({ channel, date })).toBe( 'https://www.startimestv.com/channeldetail/1023102509/2024-12-10.html' ) }) it('can parse response', () => { const fs = require('fs') const path = require('path') const content = fs.readFileSync(path.join(__dirname, '__data__', 'content.html')) const result = parser({ content, date }).map(p => { p.start = p.start.toJSON() p.stop = p.stop.toJSON() return p }) expect(result.length).toBe(22) expect(result[0]).toMatchObject({ start: '2024-12-10T00:00:00.000Z', stop: '2024-12-10T01:00:00.000Z', title: 'Deserted S1 E37', description: 'Tora approaches Tubri for help, but she expresses her helplessness in seeking assistance from Arjun. Meanwhile, other family members are caught in the crossfire, trying to navigate their own positions within the household.', season: 1, episode: 37 }) }) it('can handle empty guide', () => { const result = parser({ content: '
Rate:
Category: