test: update titles and docs for regtests

This commit is contained in:
Braydon Fuller 2016-04-08 09:56:08 -04:00
parent 88a82719ca
commit 3ead5928a7
3 changed files with 5 additions and 9 deletions

View File

@ -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);

View File

@ -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');

View File

@ -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;