Server: fix tests

This commit is contained in:
Chocobozzz 2016-09-21 22:52:25 +02:00
parent 732bd03240
commit 0fb99fb4fd
1 changed files with 6 additions and 4 deletions

View File

@ -125,7 +125,7 @@ describe('Test basic friends', function () {
},
// Wait for the request between pods
function (next) {
setTimeout(next, 1000)
setTimeout(next, 11000)
}
],
// Now each pod should be friend with the other ones
@ -181,9 +181,11 @@ describe('Test basic friends', function () {
it('Should allow pod 2 to make friend again', function (done) {
const server = servers[1]
podsUtils.makeFriends(server.url, server.accessToken, function () {
each(servers, function (server, callback) {
testMadeFriends(servers, server, callback)
}, done)
setTimeout(function () {
each(servers, function (server, callback) {
testMadeFriends(servers, server, callback)
}, done)
}, 11000)
})
})