Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: test fixes #73

Merged
merged 13 commits into from
Oct 17, 2023
2 changes: 1 addition & 1 deletion src/rln_contract.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as rln from "./index.js";
chai.use(spies);

describe("RLN Contract abstraction", () => {
it.only("should be able to fetch members from events and store to rln instance", async () => {
it("should be able to fetch members from events and store to rln instance", async () => {
const rlnInstance = await rln.create();

rlnInstance.insertMember = () => undefined;
Expand Down
Loading