Create FUNDING.yml
[poolifier.git] / tests / util.test.js
index 65af73c6571bba88be9bf9429ed8e43b3645e6ca..71782ea16b25769755be0ee68138284015e28cb5 100644 (file)
@@ -1,8 +1,10 @@
 const expect = require('expect')
+const { generateID } = require('../lib/util')
 
-describe('Generate uuid', () => {
-  it('Just a proof for CI', () => {
-    expect(true).toBeTruthy()
+describe('Utility Tests ', () => {
+  it('Generate an id', () => {
+    const res = generateID()
+    expect(res).toBeTruthy()
+    expect(typeof res).toBe('string')
   })
-
 })