UNPKG

@axerunners/axecore-p2p

Version:

Interface to the axe P2P network for Axecore

31 lines (23 loc) 673 B
'use strict'; var should = require('chai').should(); var P2P = require('../../'); var builder = P2P.Messages.builder; var axecore = require('@axerunners/axecore-lib'); describe('Messages Builder', function() { describe('@constructor', function() { it('should return commands based on default', function() { // instantiate var b = builder(); should.exist(b); }); it('should return commands with customizations', function() { // instantiate var b = builder({ network: axecore.Networks.testnet, Block: axecore.Block, Transaction: axecore.Transaction }); should.exist(b); }); }); });