forked from bitpay/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
27 lines (25 loc) · 816 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
'use strict';
var should = require('chai').should();
var bitcore = require('../');
describe('Library', function() {
it('should export primatives', function() {
should.exist(bitcore.crypto);
should.exist(bitcore.encoding);
should.exist(bitcore.util);
should.exist(bitcore.errors);
should.exist(bitcore.Address);
should.exist(bitcore.Block);
should.exist(bitcore.MerkleBlock);
should.exist(bitcore.BlockHeader);
should.exist(bitcore.HDPrivateKey);
should.exist(bitcore.HDPublicKey);
should.exist(bitcore.Networks);
should.exist(bitcore.Opcode);
should.exist(bitcore.PrivateKey);
should.exist(bitcore.PublicKey);
should.exist(bitcore.Script);
should.exist(bitcore.Transaction);
should.exist(bitcore.URI);
should.exist(bitcore.Unit);
});
});