mirror of
https://github.com/iptv-org/iptv
synced 2025-12-17 02:47:33 -05:00
Fix errors found by linter
This commit is contained in:
@@ -10,11 +10,13 @@ it('show an error if channel name in the blocklist', () => {
|
||||
)
|
||||
console.log(stdout)
|
||||
process.exit(1)
|
||||
} catch (error: any) {
|
||||
} catch (error: unknown) {
|
||||
// @ts-ignore
|
||||
expect(error.status).toBe(1)
|
||||
expect(
|
||||
// @ts-ignore
|
||||
error.stdout.includes(
|
||||
`us_blocked.m3u\n 2 error "Fox Sports 2 Asia (Thai)" is on the blocklist due to claims of copyright holders (https://github.com/iptv-org/iptv/issues/0000)\n\n1 problems (1 errors, 0 warnings)\n`
|
||||
'us_blocked.m3u\n 2 error "Fox Sports 2 Asia (Thai)" is on the blocklist due to claims of copyright holders (https://github.com/iptv-org/iptv/issues/0000)\n\n1 problems (1 errors, 0 warnings)\n'
|
||||
)
|
||||
).toBe(true)
|
||||
}
|
||||
@@ -30,7 +32,7 @@ it('show a warning if channel has wrong id', () => {
|
||||
|
||||
expect(
|
||||
stdout.includes(
|
||||
`wrong_id.m3u\n 2 warning "qib22lAq1L.us" is not in the database\n\n1 problems (0 errors, 1 warnings)\n`
|
||||
'wrong_id.m3u\n 2 warning "qib22lAq1L.us" is not in the database\n\n1 problems (0 errors, 1 warnings)\n'
|
||||
)
|
||||
).toBe(true)
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user