aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/single-server.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/api/single-server.ts')
-rw-r--r--server/tests/api/single-server.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/server/tests/api/single-server.ts b/server/tests/api/single-server.ts
index fbb2dd1fb..ed79f9e1c 100644
--- a/server/tests/api/single-server.ts
+++ b/server/tests/api/single-server.ts
@@ -104,7 +104,10 @@ describe('Test a single server', function () {
104 licence: 6, 104 licence: 6,
105 tags: [ 'tag1', 'tag2', 'tag3' ] 105 tags: [ 'tag1', 'tag2', 'tag3' ]
106 } 106 }
107 await uploadVideo(server.url, server.accessToken, videoAttributes) 107 const res = await uploadVideo(server.url, server.accessToken, videoAttributes)
108 expect(res.body.video).to.not.be.undefined
109 expect(res.body.video.id).to.equal(1)
110 expect(res.body.video.uuid).to.have.length.above(5)
108 }) 111 })
109 112
110 it('Should seed the uploaded video', async function () { 113 it('Should seed the uploaded video', async function () {