UNPKG

bot18

Version:

A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f

16 lines (12 loc) 255 B
'use strict' const test = require('ava') const xml = require('..') const ltx = require('ltx') test('exports ltx', t => { t.is(xml.ltx, ltx) }) test('exports ltx properties', t => { Object.keys(ltx).forEach((key) => { t.true(key in xml) }) })