Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
fix(test): revert tdd
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubilmax committed Jan 10, 2023
1 parent 706c178 commit 2325942
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testTimeout": 300000,
"testMatch": [
"**/test/**/*.spec.ts"
],
Expand Down
13 changes: 0 additions & 13 deletions test/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,18 +176,5 @@ describe("ethers-multicall", () => {
)
);
});

// it("should retry with half payload when query too large", async () => {
// const multicall = new EthersMulticall(rpcProvider);
// const wrappedUni = multicall.wrap(uni);

// await Promise.all(
// _range(100_000).map((i) => {
// const address = utils.hexZeroPad("0x" + i.toString(16), 20);

// return wrappedUni.allowance(address, address);
// })
// );
// });
});
});

0 comments on commit 2325942

Please sign in to comment.