Skip to content

Commit

Permalink
add erc20 tokens for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelcabot committed Dec 7, 2022
1 parent 007981a commit fcb6eb8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/SoulLinker.test.ts
Expand Up @@ -195,6 +195,9 @@ describe("Soul Linker", () => {
value: ethers.utils.parseEther("10")
}
);

// we add payment methods
await soulLinker.connect(owner).addErc20Token(MASA_GOERLI);
});

describe("owner functions", () => {
Expand Down
4 changes: 4 additions & 0 deletions test/SoulStore.test.ts
Expand Up @@ -90,6 +90,10 @@ describe("Soul Store", () => {
value: ethers.utils.parseEther("10")
}
);

// we add payment methods
await soulStore.connect(owner).addErc20Token(USDC_GOERLI);
await soulStore.connect(owner).addErc20Token(MASA_GOERLI);
});

describe("owner functions", () => {
Expand Down

0 comments on commit fcb6eb8

Please sign in to comment.