mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-17 04:20:03 -04:00
Update tests
This commit is contained in:
parent
32e38bda52
commit
74b3cff1d2
8 changed files with 49 additions and 48 deletions
|
@ -8,7 +8,7 @@ type ExecError = {
|
|||
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',
|
||||
'DATA_DIR=tests/__data__/input/data STREAMS_DIR=tests/__data__/input/playlist_validate npm run playlist:validate -- us_blocked.m3u',
|
||||
{
|
||||
encoding: 'utf8'
|
||||
}
|
||||
|
@ -17,7 +17,7 @@ it('show an error if channel id in the blocklist', () => {
|
|||
} catch (error) {
|
||||
expect((error as ExecError).status).toBe(1)
|
||||
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)
|
||||
2 error "FoxSports2.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)`)
|
||||
|
@ -26,7 +26,7 @@ it('show an error if channel id in the blocklist', () => {
|
|||
|
||||
it('show a warning if channel has wrong id', () => {
|
||||
const stdout = execSync(
|
||||
'DATA_DIR=tests/__data__/input/data STREAMS_DIR=tests/__data__/input/streams_validate npm run playlist:validate -- wrong_id.m3u',
|
||||
'DATA_DIR=tests/__data__/input/data STREAMS_DIR=tests/__data__/input/playlist_validate npm run playlist:validate -- wrong_id.m3u',
|
||||
{
|
||||
encoding: 'utf8'
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue