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

6 lines
171 B
JavaScript

const htpasswd = require('../lib/htpasswd.js');
test( 'generate htpasswd', async ()=>{
const pw = await htpasswd( 'test123' );
expect( pw ).not.toBe( undefined );
});