UNPKG

noblox-bonk

Version:
36 lines (32 loc) 1.03 kB
const { getAwardedTimestamps, getBadgeInfo, setCookie } = require('../lib') beforeAll(() => { return new Promise(resolve => { setCookie(process.env.COOKIE).then(() => { resolve() }) }) }) describe('Badges Methods', () => { it('getAwardedTimestamps() returns when badges were awarded to a player', () => { return getAwardedTimestamps(64679301, [459405541]).then((res) => { return expect(res).toMatchObject({ data: expect.any(Array) }) }) }) it('getBadgeInfo() returns information on the provided badge ID', () => { return getBadgeInfo(459405541).then((res) => { return expect(res).toMatchObject({ id: expect.any(Number), name: expect.any(String), description: expect.any(String), enabled: expect.any(Boolean), iconImageId: expect.any(Number), created: expect.any(Date), updated: expect.any(Date), statistics: expect.any(Object), awardingUniverse: expect.any(Object) }) }) }) })