Make circleci use node 4.3.1. Add longer timeouts to tests.

This commit is contained in:
haad
2016-03-03 15:09:57 +01:00
parent eb71603ec7
commit 8478d970a7
3 changed files with 3 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
machine:
node:
version: 4.2.2
version: 4.3.1
services:
- redis

View File

@@ -13,7 +13,7 @@ const username = 'testrunner';
const password = '';
describe('Orbit Client', function() {
this.timeout(3000);
this.timeout(5000);
let client, db;
let items = [];

View File

@@ -19,6 +19,7 @@ const startIpfs = async (() => {
let ipfs;
describe('OrbitList', async(function() {
this.timeout(5000);
before(async((done) => {
ipfs = await(startIpfs());