Skip to content

Commit

Permalink
fix: lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 committed Oct 13, 2023
1 parent 52523ec commit 3e4c239
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/app/tests/composables/useContractABI.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ describe("useContractABI:", () => {
});
it("doesn't make request when there is no verification api url", async () => {
const mock = ($fetch as unknown as SpyInstance).mockClear();
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const { getCollection } = useContractABI({ currentNetwork: computed(() => ({})) } as any);
await getCollection(["0x5550000000000000000000000000000000000000"]);
expect(mock).toHaveBeenCalledTimes(0);
Expand Down

0 comments on commit 3e4c239

Please sign in to comment.