Fix tests
This commit is contained in:
parent
20dcfd7498
commit
25ae21107c
2 changed files with 3 additions and 3 deletions
|
@ -558,7 +558,7 @@ describe('Test follows', function () {
|
||||||
const caption1: VideoCaption = res.body.data[0]
|
const caption1: VideoCaption = res.body.data[0]
|
||||||
expect(caption1.language.id).to.equal('ar')
|
expect(caption1.language.id).to.equal('ar')
|
||||||
expect(caption1.language.label).to.equal('Arabic')
|
expect(caption1.language.label).to.equal('Arabic')
|
||||||
expect(caption1.captionPath).to.equal('/static/video-captions/' + video4.uuid + '-ar.vtt')
|
expect(caption1.captionPath).to.equal('/lazy-static/video-captions/' + video4.uuid + '-ar.vtt')
|
||||||
await testCaptionFile(servers[0].url, caption1.captionPath, 'Subtitle good 2.')
|
await testCaptionFile(servers[0].url, caption1.captionPath, 'Subtitle good 2.')
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -134,7 +134,7 @@ describe('Test video imports', function () {
|
||||||
const enCaption = videoCaptions.find(caption => caption.language.id === 'en')
|
const enCaption = videoCaptions.find(caption => caption.language.id === 'en')
|
||||||
expect(enCaption).to.exist
|
expect(enCaption).to.exist
|
||||||
expect(enCaption.language.label).to.equal('English')
|
expect(enCaption.language.label).to.equal('English')
|
||||||
expect(enCaption.captionPath).to.equal(`/static/video-captions/${res.body.video.uuid}-en.vtt`)
|
expect(enCaption.captionPath).to.equal(`/lazy-static/video-captions/${res.body.video.uuid}-en.vtt`)
|
||||||
await testCaptionFile(servers[0].url, enCaption.captionPath, `WEBVTT
|
await testCaptionFile(servers[0].url, enCaption.captionPath, `WEBVTT
|
||||||
Kind: captions
|
Kind: captions
|
||||||
Language: en
|
Language: en
|
||||||
|
@ -151,7 +151,7 @@ Adding subtitles is very easy to do`)
|
||||||
const frCaption = videoCaptions.find(caption => caption.language.id === 'fr')
|
const frCaption = videoCaptions.find(caption => caption.language.id === 'fr')
|
||||||
expect(frCaption).to.exist
|
expect(frCaption).to.exist
|
||||||
expect(frCaption.language.label).to.equal('French')
|
expect(frCaption.language.label).to.equal('French')
|
||||||
expect(frCaption.captionPath).to.equal(`/static/video-captions/${res.body.video.uuid}-fr.vtt`)
|
expect(frCaption.captionPath).to.equal(`/lazy-static/video-captions/${res.body.video.uuid}-fr.vtt`)
|
||||||
await testCaptionFile(servers[0].url, frCaption.captionPath, `WEBVTT
|
await testCaptionFile(servers[0].url, frCaption.captionPath, `WEBVTT
|
||||||
Kind: captions
|
Kind: captions
|
||||||
Language: fr
|
Language: fr
|
||||||
|
|
Loading…
Reference in a new issue