mirror of
https://github.com/aljazceru/cyphernode.git
synced 2026-01-01 12:05:22 +01:00
6 lines
171 B
JavaScript
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 );
|
|
}); |