mirror of
https://github.com/wireadmin/wireadmin
synced 2025-01-23 12:27:00 +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);
|
|
});
|
|
});
|