UNPKG

gekko-api-client

Version:

A client for the Gekko Trading Bot REST API.

14 lines (11 loc) 279 B
const chai = require('chai'); const sinon = require('sinon'); const sinonChai = require('sinon-chai'); chai.use(sinonChai); global.expect = chai.expect; beforeEach(function() { global.sandbox = sinon.sandbox.create(); }); afterEach(function() { global.sandbox.restore(); });