You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
'use strict';
|
|
|
|
var _ = require('lodash');
|
|
var chai = require('chai');
|
|
var sinon = require('sinon');
|
|
var should = chai.should();
|
|
var BlockchainExplorer = require('../lib/blockchainexplorer');
|
|
|
|
describe('Blockchain explorer', function() {
|
|
describe('#constructor', function() {
|
|
it('should return a blockchain explorer with basic methods', function() {
|
|
var exp = new BlockchainExplorer({
|
|
provider: 'insight',
|
|
network: 'testnet',
|
|
});
|
|
should.exist(exp);
|
|
exp.should.respondTo('broadcast');
|
|
exp.should.respondTo('getUtxos');
|
|
exp.should.respondTo('getTransactions');
|
|
exp.should.respondTo('getAddressActivity');
|
|
exp.should.respondTo('estimateFee');
|
|
exp.should.respondTo('initSocket');
|
|
var exp = new BlockchainExplorer({
|
|
provider: 'insight',
|
|
network: 'livenet',
|
|
});
|
|
should.exist(exp);
|
|
});
|
|
it('should fail on unsupported provider', function() {
|
|
(function() {
|
|
var exp = new BlockchainExplorer({
|
|
provider: 'dummy',
|
|
});
|
|
}).should.throw('not supported');
|
|
});
|
|
});
|
|
});
|
|
|