UNPKG

bitcore-node

Version:

A blockchain indexing node with extended capabilities using bitcore

14 lines (11 loc) 361 B
import { expect } from 'chai'; import { intAfterHelper, intBeforeHelper } from '../../helpers/integration'; describe('Storage Service', function() { const suite = this; this.timeout(30000); before(intBeforeHelper); after(async () => intAfterHelper(suite)); it('should have a test which runs', function() { expect(true).to.equal(true); }); });