aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-03-22 07:53:47 +0100
committerChocobozzz <me@florianbigard.com>2023-03-22 11:25:30 +0100
commitb926a23c6275aee8ca36b782b4565eb64de31beb (patch)
tree38eb169e15f3473c2678fa6ca71e50c3d47f5542 /server/tests/api
parent6f640ccb48b0e3ea1a3b0c3a85dd35ff33d5ce74 (diff)
downloadPeerTube-b926a23c6275aee8ca36b782b4565eb64de31beb.tar.gz
PeerTube-b926a23c6275aee8ca36b782b4565eb64de31beb.tar.zst
PeerTube-b926a23c6275aee8ca36b782b4565eb64de31beb.zip
Stop testing broken youtube-dl
Diffstat (limited to 'server/tests/api')
-rw-r--r--server/tests/api/videos/video-imports.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/tests/api/videos/video-imports.ts b/server/tests/api/videos/video-imports.ts
index 80215f038..878452ed2 100644
--- a/server/tests/api/videos/video-imports.ts
+++ b/server/tests/api/videos/video-imports.ts
@@ -23,9 +23,8 @@ async function checkVideosServer1 (server: PeerTubeServer, idHttp: string, idMag
23 const videoHttp = await server.videos.get({ id: idHttp }) 23 const videoHttp = await server.videos.get({ id: idHttp })
24 24
25 expect(videoHttp.name).to.equal('small video - youtube') 25 expect(videoHttp.name).to.equal('small video - youtube')
26 // FIXME: youtube-dl seems broken 26 expect(videoHttp.category.label).to.equal('News & Politics')
27 // expect(videoHttp.category.label).to.equal('News & Politics') 27 expect(videoHttp.licence.label).to.equal('Attribution')
28 // expect(videoHttp.licence.label).to.equal('Attribution')
29 expect(videoHttp.language.label).to.equal('Unknown') 28 expect(videoHttp.language.label).to.equal('Unknown')
30 expect(videoHttp.nsfw).to.be.false 29 expect(videoHttp.nsfw).to.be.false
31 expect(videoHttp.description).to.equal('this is a super description') 30 expect(videoHttp.description).to.equal('this is a super description')
@@ -460,7 +459,8 @@ describe('Test video imports', function () {
460 }) 459 })
461 } 460 }
462 461
463 runSuite('youtube-dl') 462 // FIXME: youtube-dl seems broken
463 // runSuite('youtube-dl')
464 464
465 runSuite('yt-dlp') 465 runSuite('yt-dlp')
466 466