mirror of
https://github.com/logos-messaging/js-rln.git
synced 2026-02-12 01:33:08 +00:00
10 lines
230 B
TypeScript
10 lines
230 B
TypeScript
|
|
import * as rln from "./index";
|
||
|
|
|
||
|
|
describe("Waku Filter", () => {
|
||
|
|
it("test", async function () {
|
||
|
|
const rlnInstance = await rln.create();
|
||
|
|
console.log(rlnInstance.generateMembershipKey());
|
||
|
|
// TODO: write test
|
||
|
|
});
|
||
|
|
});
|