/* Integration tests for bchjs control library. */ import chai from 'chai' import BCHJS from '../../src/bch-js.js' const assert = chai.assert const bchjs = new BCHJS() describe('#control', () => { beforeEach(async () => { if (process.env.IS_USING_FREE_TIER) await sleep(1500) }) describe('#getNetworkInfo', () => { it('should get info on the full node', async () => { const result = await bchjs.Control.getNetworkInfo() // console.log(`result: ${JSON.stringify(result, null, 2)}`) assert.property(result, 'version') }) }) }) function sleep (ms) { return new Promise(resolve => setTimeout(resolve, ms)) }