From 8478d970a7b591060f7914885bc1c28811ee81e5 Mon Sep 17 00:00:00 2001 From: haad Date: Thu, 3 Mar 2016 15:09:57 +0100 Subject: [PATCH] Make circleci use node 4.3.1. Add longer timeouts to tests. --- circle.yml | 2 +- test/orbit-client-tests.js | 2 +- test/orbit-list-tests.js | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/circle.yml b/circle.yml index b568530..c87ba43 100644 --- a/circle.yml +++ b/circle.yml @@ -1,5 +1,5 @@ machine: node: - version: 4.2.2 + version: 4.3.1 services: - redis \ No newline at end of file diff --git a/test/orbit-client-tests.js b/test/orbit-client-tests.js index 57fb274..9107d65 100644 --- a/test/orbit-client-tests.js +++ b/test/orbit-client-tests.js @@ -13,7 +13,7 @@ const username = 'testrunner'; const password = ''; describe('Orbit Client', function() { - this.timeout(3000); + this.timeout(5000); let client, db; let items = []; diff --git a/test/orbit-list-tests.js b/test/orbit-list-tests.js index 02c83f6..5d53ac7 100644 --- a/test/orbit-list-tests.js +++ b/test/orbit-list-tests.js @@ -19,6 +19,7 @@ const startIpfs = async (() => { let ipfs; describe('OrbitList', async(function() { + this.timeout(5000); before(async((done) => { ipfs = await(startIpfs());