Update validate.test.ts

This commit is contained in:
freearhey 2025-02-27 21:19:01 +03:00
parent eb2c7a07a9
commit de8bf7d36c
1 changed files with 6 additions and 4 deletions

View File

@ -5,7 +5,7 @@ type ExecError = {
stdout: string
}
it('show an error if channel name in the blocklist', () => {
it('show an error if channel id in the blocklist', () => {
try {
execSync(
'DATA_DIR=tests/__data__/input/data STREAMS_DIR=tests/__data__/input/streams_validate npm run playlist:validate -- us_blocked.m3u',
@ -16,9 +16,11 @@ it('show an error if channel name in the blocklist', () => {
process.exit(1)
} catch (error) {
expect((error as ExecError).status).toBe(1)
expect((error as ExecError).stdout).toContain(
'us_blocked.m3u\n 2 error "Fox Sports 2 Asia (Thai)" is on the blocklist due to claims of copyright holders or NSFW content (https://github.com/iptv-org/iptv/issues/0000)\n\n1 problems (1 errors, 0 warnings)\n'
)
expect((error as ExecError).stdout).toContain(`us_blocked.m3u
2 error "FoxSports2Asia.us" is on the blocklist due to claims of copyright holders (https://github.com/iptv-org/iptv/issues/0002)
4 error "TVN.pl" is on the blocklist due to NSFW content (https://github.com/iptv-org/iptv/issues/0003)
2 problems (2 errors, 0 warnings)`)
}
})