From 8a766ab66f598996f59e0b5d7d95f4f241dedfb2 Mon Sep 17 00:00:00 2001 From: haad Date: Tue, 24 May 2016 16:18:13 +0200 Subject: [PATCH] Add ipfs api names to counter tests --- test/counterdb.test.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/counterdb.test.js b/test/counterdb.test.js index 91054be..c80a702 100644 --- a/test/counterdb.test.js +++ b/test/counterdb.test.js @@ -22,6 +22,7 @@ let ipfs, ipfsDaemon; const IpfsApis = [ { // js-ipfs + name: 'js-ipfs', start: () => { return new Promise((resolve, reject) => { const IPFS = require('ipfs') @@ -56,6 +57,7 @@ const IpfsApis = [ }, { // js-ipfs-api via local daemon + name: 'js-ipfs-api', start: () => { return new Promise((resolve, reject) => { ipfsd.disposableApi((err, ipfs) => { @@ -80,7 +82,7 @@ const IpfsApis = [ // OrbitServer.start(); // uncomment if running this test suite stand-alone IpfsApis.forEach(function(ipfsApi) { - describe('CounterStore', function() { + describe('CounterStore with ' + ipfsApi.name, function() { this.timeout(40000); let client1, client2;