From 3ead5928a72f42ffcdb06f7f235983c920ff802e Mon Sep 17 00:00:00 2001 From: Braydon Fuller Date: Fri, 8 Apr 2016 09:56:08 -0400 Subject: [PATCH] test: update titles and docs for regtests --- regtest/bitcoind.js | 7 ++----- regtest/node.js | 5 +---- regtest/p2p.js | 2 ++ 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/regtest/bitcoind.js b/regtest/bitcoind.js index 98118ec1..74d9ffa5 100644 --- a/regtest/bitcoind.js +++ b/regtest/bitcoind.js @@ -1,9 +1,6 @@ 'use strict'; -// These tests require bitcore-node Bitcoin Core bindings to be compiled with -// the environment variable BITCORENODE_ENV=test. This enables the use of regtest -// functionality by including the wallet in the build. -// To run the tests: $ mocha -R spec integration/regtest.js +// To run the tests: $ mocha -R spec regtest/bitcoind.js var path = require('path'); var index = require('..'); @@ -29,7 +26,7 @@ var coinbasePrivateKey; var privateKey = bitcore.PrivateKey(); var destKey = bitcore.PrivateKey(); -describe('Daemon Binding Functionality', function() { +describe('Bitcoind Functionality', function() { before(function(done) { this.timeout(30000); diff --git a/regtest/node.js b/regtest/node.js index 9523f79a..fa031a38 100644 --- a/regtest/node.js +++ b/regtest/node.js @@ -1,9 +1,6 @@ 'use strict'; -// These tests require bitcore-node Bitcoin Core bindings to be compiled with -// the environment variable BITCORENODE_ENV=test. This enables the use of regtest -// functionality by including the wallet in the build. -// To run the tests: $ mocha -R spec integration/regtest-node.js +// To run the tests: $ mocha -R spec regtest/node.js var index = require('..'); var async = require('async'); diff --git a/regtest/p2p.js b/regtest/p2p.js index 8bde448d..acf718d1 100644 --- a/regtest/p2p.js +++ b/regtest/p2p.js @@ -1,5 +1,7 @@ 'use strict'; +// To run the tests: $ mocha -R spec regtest/p2p.js + var path = require('path'); var index = require('..'); var log = index.log;