From 2cc8ebf134b66047cd639ee7324e1ecfd5c5fd18 Mon Sep 17 00:00:00 2001
From: Chocobozzz <florian.bigard@gmail.com>
Date: Sat, 9 Jan 2016 14:46:16 +0100
Subject: [PATCH] Fix tests

---
 test/api/friendsAdvanced.js | 16 +++++++++-------
 test/api/multiplePods.js    |  4 ++--
 2 files changed, 11 insertions(+), 9 deletions(-)

diff --git a/test/api/friendsAdvanced.js b/test/api/friendsAdvanced.js
index 1103d3a970..a638eb0d43 100644
--- a/test/api/friendsAdvanced.js
+++ b/test/api/friendsAdvanced.js
@@ -50,7 +50,7 @@
     })
 
     it('Should make friends with two pod each in a different group', function (done) {
-      this.timeout(10000)
+      this.timeout(20000)
 
       // Pod 3 makes friend with the first one
       makeFriend(3, function () {
@@ -58,14 +58,16 @@
         makeFriend(4, function () {
           // Now if the fifth wants to make friends with the third et the first
           makeFriend(5, function () {
-            // It should have 0 friends
-            getFriendsList(5, function (err, res) {
-              if (err) throw err
+            setTimeout(function () {
+              // It should have 0 friends
+              getFriendsList(5, function (err, res) {
+                if (err) throw err
 
-              expect(res.body.length).to.equal(0)
+                expect(res.body.length).to.equal(0)
 
-              done()
-            })
+                done()
+              })
+            }, 11000)
           })
         })
       })
diff --git a/test/api/multiplePods.js b/test/api/multiplePods.js
index dd666d73e3..a831e0fa65 100644
--- a/test/api/multiplePods.js
+++ b/test/api/multiplePods.js
@@ -140,7 +140,7 @@
       })
 
       it('Should upload two videos on pod 3 and propagate on each pod', function (done) {
-        this.timeout(15000)
+        this.timeout(30000)
 
         utils.uploadVideo(urls[2], 'my super name for pod 3', 'my super description for pod 3', 'video_short3.webm', function (err) {
           if (err) throw err
@@ -183,7 +183,7 @@
 
                 done()
               })
-            }, 11000)
+            }, 22000)
           })
         })
       })
-- 
GitLab