aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/videos/multiple-servers.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/api/videos/multiple-servers.ts')
-rw-r--r--server/tests/api/videos/multiple-servers.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/server/tests/api/videos/multiple-servers.ts b/server/tests/api/videos/multiple-servers.ts
index 470bee45b..c6c279064 100644
--- a/server/tests/api/videos/multiple-servers.ts
+++ b/server/tests/api/videos/multiple-servers.ts
@@ -667,6 +667,26 @@ describe('Test multiple servers', function () {
667 } 667 }
668 }) 668 })
669 669
670 it('Should only update thumbnail and update updatedAt attribute', async function () {
671 this.timeout(10000)
672
673 const attributes = {
674 thumbnailfile: 'thumbnail.jpg'
675 }
676
677 updatedAtMin = new Date()
678 await servers[2].videos.update({ id: toRemove[0].id, attributes })
679
680 await waitJobs(servers)
681
682 for (const server of servers) {
683 const { data } = await server.videos.list()
684
685 const videoUpdated = data.find(video => video.name === 'my super video updated')
686 expect(new Date(videoUpdated.updatedAt)).to.be.greaterThan(updatedAtMin)
687 }
688 })
689
670 it('Should remove the videos 3 and 3-2 by asking server 3 and correctly delete files', async function () { 690 it('Should remove the videos 3 and 3-2 by asking server 3 and correctly delete files', async function () {
671 this.timeout(30000) 691 this.timeout(30000)
672 692