Files
cyphernode/cyphernodeconf_docker/test/name.test.js
2019-06-03 17:19:55 -04:00

7 lines
148 B
JavaScript

const name = require('../lib/name.js');
test( 'Create new random name', ()=>{
const n = name.generate();
expect( n ).not.toBe( undefined )
});