mirror of
https://github.com/logos-messaging/waku-rlnv1-contract.git
synced 2026-01-04 07:13:12 +00:00
9 lines
180 B
TypeScript
9 lines
180 B
TypeScript
import { expect } from "chai";
|
|
import { ethers, deployments } from "hardhat";
|
|
|
|
describe("RLN", () => {
|
|
beforeEach(async () => {
|
|
await deployments.fixture(["RLN"]);
|
|
});
|
|
});
|