Increase test timers

pull/128/head
Chocobozzz 2017-11-24 14:39:14 +01:00
parent f10336cad0
commit 652b30564c
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 4 additions and 3 deletions

View File

@ -29,6 +29,8 @@ describe('Test config', function () {
})
it('Should have a correct config on a server with registration enabled and a users limit', async function () {
this.timeout(5000)
await Promise.all([
registerUser(server.url, 'user1', 'super password'),
registerUser(server.url, 'user2', 'super password'),

View File

@ -69,8 +69,7 @@ describe('Test multiple servers', function () {
describe('Should upload the video and propagate on each server', function () {
it('Should upload the video on server 1 and propagate on each server', async function () {
// Server 1 has video transcoding activated
this.timeout(15000)
this.timeout(25000)
const videoAttributes = {
name: 'my super name for server 1',
@ -85,7 +84,7 @@ describe('Test multiple servers', function () {
}
await uploadVideo(servers[0].url, servers[0].accessToken, videoAttributes)
await wait(5000)
await wait(10000)
// All servers should have this video
for (const server of servers) {