Increase tests timeout
authorChocobozzz <me@florianbigard.com>
Thu, 18 Jan 2018 17:10:45 +0000 (18:10 +0100)
committerChocobozzz <me@florianbigard.com>
Thu, 18 Jan 2018 17:10:45 +0000 (18:10 +0100)
18 files changed:
server/tests/activitypub.ts
server/tests/api/check-params/accounts.ts
server/tests/api/check-params/config.ts
server/tests/api/check-params/follows.ts
server/tests/api/check-params/users.ts
server/tests/api/check-params/video-abuses.ts
server/tests/api/check-params/video-channels.ts
server/tests/api/check-params/video-comments.ts
server/tests/api/check-params/videos.ts
server/tests/api/server/config.ts
server/tests/api/server/follows.ts
server/tests/api/server/handle-down.ts
server/tests/api/users/users.ts
server/tests/api/videos/services.ts
server/tests/api/videos/single-server.ts
server/tests/api/videos/video-channels.ts
server/tests/api/videos/video-comments.ts
server/tests/api/videos/video-transcoder.ts

index c8884719de5ebfe37eed3a4dab44bcdaa54ecbeb..9e29b0fa88b1fcf9a67cb56804e039331b9b325b 100644 (file)
@@ -10,7 +10,7 @@ describe('Test activitypub', function () {
   let server: ServerInfo = null
 
   before(async function () {
-    this.timeout(10000)
+    this.timeout(30000)
 
     await flushTests()
 
index 351228754d53f21f17fd31e005c77e0484a31636..50dc0804efa25cdaaff59786e1775b18e94cf241 100644 (file)
@@ -13,7 +13,7 @@ describe('Test users API validators', function () {
   // ---------------------------------------------------------------
 
   before(async function () {
-    this.timeout(20000)
+    this.timeout(30000)
 
     await flushTests()
 
index 59a0c30498fbc9b35557758f63c4f3995371a5cb..a2a40470230238e200b0749f43537f763172b7d5 100644 (file)
@@ -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)
index e54f139f074bdaa5b8670548962e2e3d3566b7e3..2bc3b27d9e8b039ff41684e6449c99a52ebce607 100644 (file)
@@ -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)
index 0c9d933a7c8c401d51cab3835cd93a962a7478e7..b0f35b9f719517fc09d3d51dcff6f62ead8ac860 100644 (file)
@@ -24,7 +24,7 @@ describe('Test users API validators', function () {
   // ---------------------------------------------------------------
 
   before(async function () {
-    this.timeout(20000)
+    this.timeout(30000)
 
     await flushTests()
 
index 68e2ce7860bb9bb7588b16856927b3b832c2951d..68b965bbed8cd2571ed78498bc72dd278cff0d87 100644 (file)
@@ -15,7 +15,7 @@ describe('Test video abuses API validators', function () {
   // ---------------------------------------------------------------
 
   before(async function () {
-    this.timeout(20000)
+    this.timeout(30000)
 
     await flushTests()
 
index 22e98d1105b1f37e7eb7e87315831951715db299..d073e28f0a6c66a0eb1e8842f3fddd6a375a1b46 100644 (file)
@@ -19,7 +19,7 @@ describe('Test videos API validator', function () {
   // ---------------------------------------------------------------
 
   before(async function () {
-    this.timeout(20000)
+    this.timeout(30000)
 
     await flushTests()
 
index 9190054da9fa70d6fa57139f7ce8bda23f509790..3fde9bd947f8e6c272f6449da7cf52fe6654e9f9 100644 (file)
@@ -23,7 +23,7 @@ describe('Test video comments API validator', function () {
   // ---------------------------------------------------------------
 
   before(async function () {
-    this.timeout(20000)
+    this.timeout(30000)
 
     await flushTests()
 
index 5c067dc96a2a4151f975885c9e7b496ba43ae79d..f25e3f59536016a3d41d57a7cdbc98fe10376f24 100644 (file)
@@ -21,7 +21,7 @@ describe('Test videos API validator', function () {
   // ---------------------------------------------------------------
 
   before(async function () {
-    this.timeout(20000)
+    this.timeout(30000)
 
     await flushTests()
 
index 8c1389e7f5c7d953bd342ec4bd68a618a4fed75f..0aa0e2ec1932a5d447bc1d62c8ccfa18e6cb7bfb 100644 (file)
@@ -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)
index b26af1a169dd34cb11fd42342c42032ce7d485a8..7c4dea458a2302ad5f428bf3195607068465e740 100644 (file)
@@ -27,7 +27,7 @@ describe('Test follows', function () {
   let servers: ServerInfo[] = []
 
   before(async function () {
-    this.timeout(20000)
+    this.timeout(30000)
 
     servers = await flushAndRunMultipleServers(3)
 
index e99e517e4e5dd4fa5186e802110c022b390a7775..de4e77b2f58c6ab64074c3aff2b523f9ab45ad7f 100644 (file)
@@ -76,7 +76,7 @@ describe('Test handle downs', function () {
   })
 
   before(async function () {
-    this.timeout(20000)
+    this.timeout(30000)
 
     servers = await flushAndRunMultipleServers(2)
 
index d8004ff24f560e0e36d72bcf235b1bbb2dee2486..6bb5fd698f8276fb3eafb26a792b810a01743cfa 100644 (file)
@@ -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)
index 699f79ab7268ffe8aa6e48b45120c9a0d2414bc5..e456184cf0dc91be908baa0ce00ca2a9c9f55d57 100644 (file)
@@ -11,7 +11,7 @@ describe('Test services', function () {
   let server: ServerInfo = null
 
   before(async function () {
-    this.timeout(10000)
+    this.timeout(30000)
 
     await flushTests()
 
index 76d265ec5777ad564822582a3b0feb92ce9851d3..476a25479ebc2c69092516bfd4152f44437ebe3b 100644 (file)
@@ -76,7 +76,7 @@ describe('Test a single server', function () {
   }
 
   before(async function () {
-    this.timeout(10000)
+    this.timeout(30000)
 
     await flushTests()
 
index 8d33c602590c6e4f4856644cd2b30d33571872ed..25b7ad6abd7cf035afea067711c7b588b1947ba9 100644 (file)
@@ -26,7 +26,7 @@ describe('Test a video channels', function () {
   let videoChannelId: number
 
   before(async function () {
-    this.timeout(10000)
+    this.timeout(30000)
 
     await flushTests()
 
index 0eddac35b6a40b4b21ac09abcc2c66c9f7599439..cf8166a9641232fc4baaebb8a52ea1b0c368aed6 100644 (file)
@@ -23,7 +23,7 @@ describe('Test video comments', function () {
   let replyToDeleteId: number
 
   before(async function () {
-    this.timeout(10000)
+    this.timeout(30000)
 
     await flushTests()
 
index 9ce2ae1900aa334eb6bd37b7ab076baa7f820587..c494e7f677c2140f0bfb654217a91c2ea0b239ff 100644 (file)
@@ -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)