aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/single-pod.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/api/single-pod.js')
-rw-r--r--server/tests/api/single-pod.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/server/tests/api/single-pod.js b/server/tests/api/single-pod.js
index fe388698f..e08da0517 100644
--- a/server/tests/api/single-pod.js
+++ b/server/tests/api/single-pod.js
@@ -22,7 +22,7 @@ describe('Test a single pod', function () {
22 let videosListBase = null 22 let videosListBase = null
23 23
24 before(function (done) { 24 before(function (done) {
25 this.timeout(20000) 25 this.timeout(120000)
26 26
27 series([ 27 series([
28 function (next) { 28 function (next) {
@@ -181,7 +181,8 @@ describe('Test a single pod', function () {
181 if (err) throw err 181 if (err) throw err
182 expect(test).to.equal(true) 182 expect(test).to.equal(true)
183 183
184 done() 184 // Wait the async views increment
185 setTimeout(done, 500)
185 }) 186 })
186 }) 187 })
187 }) 188 })