UNPKG

@gameroom/kit

Version:

Node kit for the Gameroom API

21 lines (17 loc) 340 B
const chai = require('chai') const { helpers: { uuid } } = require('../../') const should = chai.should() describe('uuid()', () => { it('should create a uuid', async () => { let result, error try { result = uuid() } catch (err) { error = err } should.not.exist(error) should.exist(result) }) })