diff --git a/test/utils.js b/test/utils.js index 2d3edb7ff0..7dbf0fa0bd 100644 --- a/test/utils.js +++ b/test/utils.js @@ -199,10 +199,9 @@ describe('Utility Methods', () => { utils.assertPasswordValidity('Yzsh31j!a', zxcvbn); }); - // it('should generate UUID', () => { - // TODO: add back when nodejs 18 is minimum - // assert(validator.isUUID(utils.generateUUID())); - // }); + it('should generate UUID', () => { + assert(validator.isUUID(utils.generateUUID())); + }); it('should shallow merge two objects', (done) => { const a = { foo: 1, cat1: 'ginger' };