bot18
Version:
A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f
16 lines (13 loc) • 349 B
JavaScript
/* eslint-env mocha */
const { MarginInfo } = require('../../../lib/models')
const testModel = require('../../helpers/test_model')
describe('MarginInfo model', () => {
testModel({
model: MarginInfo,
orderedFields: [
'userPL', 'userSwaps', 'symbol', 'tradeableBalance', 'marginBalance',
'marginNet'
]
})
})