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
417 B
18 lines
417 B
'use strict';
|
|
|
|
var should = require('chai').should();
|
|
var bitcore = require('../../');
|
|
var constants = bitcore.Constants;
|
|
|
|
describe('Constants', function() {
|
|
|
|
it('should contain all constants for livenet and testnet', function() {
|
|
for (var key in constants.livenet) {
|
|
if (constants.livenet.hasOwnProperty(key)) {
|
|
constants.testnet.hasOwnProperty(key).should.equal(true);
|
|
}
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|