cryptorescuecore-node
Version:
Full node with extended capabilities using cryptorescuecore and CryptoRescue
13 lines (10 loc) • 339 B
JavaScript
;
var should = require('chai').should();
describe('Index Exports', function() {
it('will export cryptorescuecore-lib', function() {
var cryptorescuecore = require('../');
should.exist(cryptorescuecore.lib);
should.exist(cryptorescuecore.lib.Transaction);
should.exist(cryptorescuecore.lib.Block);
});
});