mirror of
https://github.com/Permissionless-Software-Foundation/bch-js.git
synced 2026-09-22 00:52:01 -07:00
28 lines
654 B
JavaScript
28 lines
654 B
JavaScript
/*
|
|
Integration tests for bchjs control library.
|
|
*/
|
|
|
|
const chai = require("chai")
|
|
const assert = chai.assert
|
|
const BCHJS = require("../../src/bch-js")
|
|
const bchjs = new BCHJS()
|
|
|
|
describe(`#control`, () => {
|
|
beforeEach(async () => {
|
|
if (process.env.IS_USING_FREE_TIER) await sleep(1000)
|
|
})
|
|
|
|
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))
|
|
}
|