Merge pull request #50558 from iptv-org/patch-2026.09.1

Patch 2026.09.1
This commit is contained in:
Pecaquito
2026-09-04 16:52:14 -04:00
committed by GitHub
18 changed files with 9011 additions and 8771 deletions
+8 -2
View File
@@ -10,7 +10,8 @@ describe('report:create', () => {
if (process.env.DEBUG === 'true') console.log(cmd, stdout)
expect(
stdout.includes(`
normalize(stdout).includes(
normalize(`
┌─────────┬─────────────┬──────────────────┬─────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────┬──────────────────────┐
│ (index) │ issueNumber │ type │ streamId │ streamUrl │ status │
├─────────┼─────────────┼──────────────────┼─────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────────────────────┼──────────────────────┤
@@ -26,7 +27,12 @@ describe('report:create', () => {
│ 9 │ 20956 │ 'channel search' │ 'IONTV.us' │ undefined │ 'fulfilled' │
│ 10 │ 25157 │ 'streams:add' │ 'OnTimeSports.eg@SD' │ 'OnTime Sports SD.mu38' │ 'invalid_stream_url' │
│ 11 │ 39097 │ 'streams:edit' │ '~' │ 'https://jmp2.uk/plu-5a74b8e1e22a61737979c6bf.m3u8' │ 'nonexistent_link' │
└─────────┴─────────────┴──────────────────┴─────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────┴──────────────────────┘`)
└─────────┴─────────────┴──────────────────┴─────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────┴──────────────────────┘`).trim()
)
).toBe(true)
})
})
function normalize(text: string) {
return text.replace(/\r\n/g, '\n')
}