1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-06 03:50:26 +02:00

Add video channel tests

This commit is contained in:
Chocobozzz 2017-10-24 19:41:30 +02:00
parent 72c7248b6f
commit 5f04dd2f74
No known key found for this signature in database
GPG key ID: 583A612D890159BE
16 changed files with 869 additions and 114 deletions

View file

@ -87,7 +87,7 @@ describe('Test basic friends', function () {
const pod1 = friends[0]
expect(pod1.host).to.equal(servers[2].host)
expect(pod1.email).to.equal('admin3@example.com')
expect(pod1.score).to.equal(20)
expect(pod1.score).to.be.at.least(20)
expect(dateIsValid(pod1.createdAt)).to.be.true
// Same here, the third pod should have the second pod as a friend
@ -99,7 +99,7 @@ describe('Test basic friends', function () {
const pod2 = result[0]
expect(pod2.host).to.equal(servers[1].host)
expect(pod2.email).to.equal('admin2@example.com')
expect(pod2.score).to.equal(20)
expect(pod2.score).to.be.at.least(20)
expect(dateIsValid(pod2.createdAt)).to.be.true
// Finally the first pod make friend with the second pod
@ -133,7 +133,7 @@ describe('Test basic friends', function () {
const pod = res.body.data[0]
expect(pod.host).to.equal('localhost:9002')
expect(pod.email).to.equal('admin2@example.com')
expect(pod.score).to.equal(20)
expect(pod.score).to.be.at.least(20)
expect(dateIsValid(pod.createdAt)).to.be.true
})