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.
18 lines
428 B
18 lines
428 B
'use strict';
|
|
|
|
/* jshint maxstatements: 30 */
|
|
|
|
var chai = require('chai');
|
|
var should = chai.should();
|
|
var expect = chai.expect;
|
|
|
|
var bitcore = require('..');
|
|
|
|
describe('Address', function() {
|
|
|
|
it('should throw an error because of bad network param', function() {
|
|
(function(){
|
|
return new Address(PKHLivenet[0], 'main', 'pubkeyhash');
|
|
}).should.throw('Second argument must be "livenet" or "testnet".');
|
|
});
|
|
});
|
|
|