aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/cli/regenerate-thumbnails.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-04-08 10:08:11 +0200
committerChocobozzz <me@florianbigard.com>2021-04-08 10:08:11 +0200
commit20373985c0d83f672ece5c061f4c5e96942f6243 (patch)
tree552a87731935ce5966368fd40c4cc7ebb1af853f /server/tests/cli/regenerate-thumbnails.ts
parent75cba40de749fa8bf6cd767acbfaf478a6a8acbd (diff)
downloadPeerTube-20373985c0d83f672ece5c061f4c5e96942f6243.tar.gz
PeerTube-20373985c0d83f672ece5c061f4c5e96942f6243.tar.zst
PeerTube-20373985c0d83f672ece5c061f4c5e96942f6243.zip
Fix static ffmpeg version check
Diffstat (limited to 'server/tests/cli/regenerate-thumbnails.ts')
-rw-r--r--server/tests/cli/regenerate-thumbnails.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/cli/regenerate-thumbnails.ts b/server/tests/cli/regenerate-thumbnails.ts
index 56005518a..a9c8642a5 100644
--- a/server/tests/cli/regenerate-thumbnails.ts
+++ b/server/tests/cli/regenerate-thumbnails.ts
@@ -77,14 +77,14 @@ describe('Test regenerate thumbnails script', function () {
77 } 77 }
78 }) 78 })
79 79
80 it('Should regenerate thumbnails from the CLI', async function () { 80 it('Should regenerate local thumbnails from the CLI', async function () {
81 this.timeout(15000) 81 this.timeout(15000)
82 82
83 const env = getEnvCli(servers[0]) 83 const env = getEnvCli(servers[0])
84 await execCLI(`${env} npm run regenerate-thumbnails`) 84 await execCLI(`${env} npm run regenerate-thumbnails`)
85 }) 85 })
86 86
87 it('Should have regenerated thumbbnails', async function () { 87 it('Should have regenerated local thumbnails', async function () {
88 { 88 {
89 const res1 = await makeRawRequest(join(servers[0].url, video1.thumbnailPath), HttpStatusCode.OK_200) 89 const res1 = await makeRawRequest(join(servers[0].url, video1.thumbnailPath), HttpStatusCode.OK_200)
90 expect(res1.body).to.not.have.lengthOf(0) 90 expect(res1.body).to.not.have.lengthOf(0)