1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 19:42:24 +02:00

Update videos api list for account

This commit is contained in:
Chocobozzz 2018-03-12 11:06:15 +01:00
parent 416c359cb5
commit b64c950a1c
No known key found for this signature in database
GPG key ID: 583A612D890159BE
13 changed files with 135 additions and 92 deletions

View file

@ -94,7 +94,7 @@ describe('Test users', function () {
const res = await getVideosList(server.url)
const video = res.body.data[ 0 ]
expect(video.accountName).to.equal('root')
expect(video.account.name).to.equal('root')
videoId = video.id
})
@ -432,7 +432,7 @@ describe('Test users', function () {
expect(res.body.total).to.equal(1)
const video = res.body.data[ 0 ]
expect(video.accountName).to.equal('root')
expect(video.account.name).to.equal('root')
})
it('Should register a new user', async function () {