14 lines
297 B
JavaScript
14 lines
297 B
JavaScript
'use strict';
|
|
|
|
var chai = chai || require('chai');
|
|
var bitcore = bitcore || require('../bitcore');
|
|
|
|
var expect = chai.expect;
|
|
var should = chai.should();
|
|
|
|
describe('Initialization of bitcore', function() {
|
|
it('should initialze the main object', function() {
|
|
should.exist(bitcore);
|
|
});
|
|
});
|