Increase tests timeout
This commit is contained in:
parent
5668bf2e51
commit
e212f88714
|
@ -10,7 +10,7 @@ describe('Test activitypub', function () {
|
|||
let server: ServerInfo = null
|
||||
|
||||
before(async function () {
|
||||
this.timeout(10000)
|
||||
this.timeout(30000)
|
||||
|
||||
await flushTests()
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ describe('Test users API validators', function () {
|
|||
// ---------------------------------------------------------------
|
||||
|
||||
before(async function () {
|
||||
this.timeout(20000)
|
||||
this.timeout(30000)
|
||||
|
||||
await flushTests()
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ describe('Test config API validators', function () {
|
|||
// ---------------------------------------------------------------
|
||||
|
||||
before(async function () {
|
||||
this.timeout(20000)
|
||||
this.timeout(30000)
|
||||
|
||||
await flushTests()
|
||||
server = await runServer(1)
|
||||
|
|
|
@ -14,7 +14,7 @@ describe('Test server follows API validators', function () {
|
|||
// ---------------------------------------------------------------
|
||||
|
||||
before(async function () {
|
||||
this.timeout(20000)
|
||||
this.timeout(30000)
|
||||
|
||||
await flushTests()
|
||||
server = await runServer(1)
|
||||
|
|
|
@ -24,7 +24,7 @@ describe('Test users API validators', function () {
|
|||
// ---------------------------------------------------------------
|
||||
|
||||
before(async function () {
|
||||
this.timeout(20000)
|
||||
this.timeout(30000)
|
||||
|
||||
await flushTests()
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ describe('Test video abuses API validators', function () {
|
|||
// ---------------------------------------------------------------
|
||||
|
||||
before(async function () {
|
||||
this.timeout(20000)
|
||||
this.timeout(30000)
|
||||
|
||||
await flushTests()
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ describe('Test videos API validator', function () {
|
|||
// ---------------------------------------------------------------
|
||||
|
||||
before(async function () {
|
||||
this.timeout(20000)
|
||||
this.timeout(30000)
|
||||
|
||||
await flushTests()
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ describe('Test video comments API validator', function () {
|
|||
// ---------------------------------------------------------------
|
||||
|
||||
before(async function () {
|
||||
this.timeout(20000)
|
||||
this.timeout(30000)
|
||||
|
||||
await flushTests()
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ describe('Test videos API validator', function () {
|
|||
// ---------------------------------------------------------------
|
||||
|
||||
before(async function () {
|
||||
this.timeout(20000)
|
||||
this.timeout(30000)
|
||||
|
||||
await flushTests()
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ describe('Test config', function () {
|
|||
let server = null
|
||||
|
||||
before(async function () {
|
||||
this.timeout(10000)
|
||||
this.timeout(30000)
|
||||
|
||||
await flushTests()
|
||||
server = await runServer(1)
|
||||
|
|
|
@ -27,7 +27,7 @@ describe('Test follows', function () {
|
|||
let servers: ServerInfo[] = []
|
||||
|
||||
before(async function () {
|
||||
this.timeout(20000)
|
||||
this.timeout(30000)
|
||||
|
||||
servers = await flushAndRunMultipleServers(3)
|
||||
|
||||
|
|
|
@ -76,7 +76,7 @@ describe('Test handle downs', function () {
|
|||
})
|
||||
|
||||
before(async function () {
|
||||
this.timeout(20000)
|
||||
this.timeout(30000)
|
||||
|
||||
servers = await flushAndRunMultipleServers(2)
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ describe('Test users', function () {
|
|||
let userId: number
|
||||
|
||||
before(async function () {
|
||||
this.timeout(10000)
|
||||
this.timeout(30000)
|
||||
|
||||
await flushTests()
|
||||
server = await runServer(1)
|
||||
|
|
|
@ -11,7 +11,7 @@ describe('Test services', function () {
|
|||
let server: ServerInfo = null
|
||||
|
||||
before(async function () {
|
||||
this.timeout(10000)
|
||||
this.timeout(30000)
|
||||
|
||||
await flushTests()
|
||||
|
||||
|
|
|
@ -76,7 +76,7 @@ describe('Test a single server', function () {
|
|||
}
|
||||
|
||||
before(async function () {
|
||||
this.timeout(10000)
|
||||
this.timeout(30000)
|
||||
|
||||
await flushTests()
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ describe('Test a video channels', function () {
|
|||
let videoChannelId: number
|
||||
|
||||
before(async function () {
|
||||
this.timeout(10000)
|
||||
this.timeout(30000)
|
||||
|
||||
await flushTests()
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ describe('Test video comments', function () {
|
|||
let replyToDeleteId: number
|
||||
|
||||
before(async function () {
|
||||
this.timeout(10000)
|
||||
this.timeout(30000)
|
||||
|
||||
await flushTests()
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ describe('Test video transcoding', function () {
|
|||
let servers: ServerInfo[] = []
|
||||
|
||||
before(async function () {
|
||||
this.timeout(10000)
|
||||
this.timeout(30000)
|
||||
|
||||
// Run servers
|
||||
servers = await flushAndRunMultipleServers(2)
|
||||
|
|
Loading…
Reference in New Issue