@gameroom/kit
Version:
Node kit for the Gameroom API
15 lines (14 loc) • 401 B
JavaScript
// describe('Adjustment.get(limit)', () => {
// it('should get a limited array of adjustments', async () => {
// let error, result
// try {
// result = await Adjustment.get({ limit: 1 })
// } catch(err) {
// error = err
// }
// should.not.exist(error)
// should.exist(result)
// result.should.be.a('array')
// should.equal(result.length, 1)
// })
// })