mirror of
https://github.com/wireadmin/wireadmin
synced 2025-01-23 20:36:58 +00:00
9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
import { generateWgKey } from '$lib/wireguard';
|
|
|
|
describe('Keys', () => {
|
|
it('should generate a key', async () => {
|
|
const keys = await generateWgKey();
|
|
console.log(keys);
|
|
});
|
|
});
|