mirror of
https://github.com/aljazceru/cyphernode.git
synced 2025-12-27 17:45:15 +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 );
|
|
}); |