Skip to content

Commit

Permalink
feat: update deposit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Space-Bean committed Jul 22, 2024
1 parent 239c790 commit b403343
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions projects/sdk/src/lib/silo/Deposit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,16 +69,6 @@ describe("Silo Deposit", function () {
sdk.tokens.DAI,
sdk.tokens.USDC,
sdk.tokens.USDT
]

const beanWstETHDepositable = [
sdk.tokens.ETH,
sdk.tokens.WETH,
sdk.tokens.WSTETH,
sdk.tokens.BEAN,
sdk.tokens.DAI,
sdk.tokens.USDC,
sdk.tokens.USDT
];

sdk.tokens.BEAN.rewards = {
Expand All @@ -104,7 +94,7 @@ describe("Silo Deposit", function () {
});

describe("Routes correctly", () => {
describe.each(beanWstETHDepositable)("Whitelist Token", (token: Token) => {
describe.each(beanEthDepositable)("Whitelist Token", (token: Token) => {
it.each(whiteListedTokensRipe.map((t) => [t.symbol, t]))(`Deposit ${token.symbol} into %s`, async (symbol: string, silo: Token) => {
const op = builder.buildDeposit(silo, account);
op.setInputToken(token);
Expand Down

0 comments on commit b403343

Please sign in to comment.