Skip to content

Commit

Permalink
Skip test that requires simulation RPC
Browse files Browse the repository at this point in the history
  • Loading branch information
pgbrandao committed Dec 13, 2023
1 parent 8a49ecc commit 49a77cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/tests/protocols/yearnDeposit.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import { test } from "vitest";
import { simulateRouterOperationHelper } from "./utils";
import { JsonRpcProvider } from "ethers";

test("generateTransaction: WETH to yvWETH (yearnDeposit)", async () => {
test.skip("generateTransaction: WETH to yvWETH (yearnDeposit)", async () => {
const provider = new JsonRpcProvider(
"https://rpc.tenderly.co/fork/5e9c3441-0528-4cc0-b9ef-809076a0df43"
"<<< insert tenderly fork RPC URL here >>>"
);
await simulateRouterOperationHelper({
chainId: 1,
Expand All @@ -23,7 +23,7 @@ test("generateTransaction: WETH to yvWETH (yearnDeposit)", async () => {

test.skip("generateTransaction: yvWETH (yearnDeposit) to WETH", async () => {
const provider = new JsonRpcProvider(
"https://rpc.tenderly.co/fork/5e9c3441-0528-4cc0-b9ef-809076a0df43"
"<<< insert tenderly fork RPC URL here >>>"
);
await simulateRouterOperationHelper({
chainId: 1,
Expand Down

0 comments on commit 49a77cc

Please sign in to comment.