js-rln/src/index.spec.ts

10 lines
230 B
TypeScript
Raw Normal View History

2022-09-23 21:35:17 -04:00
import * as rln from "./index";
describe("Waku Filter", () => {
it("test", async function () {
const rlnInstance = await rln.create();
console.log(rlnInstance.generateMembershipKey());
// TODO: write test
});
});