From 49a77cc06bb58ed5d2a388d6ce256e40ebf2dd16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Brand=C3=A3o?= Date: Wed, 13 Dec 2023 22:50:12 +0000 Subject: [PATCH] Skip test that requires simulation RPC --- core/tests/protocols/yearnDeposit.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/tests/protocols/yearnDeposit.spec.ts b/core/tests/protocols/yearnDeposit.spec.ts index 08e67da..d1ff815 100644 --- a/core/tests/protocols/yearnDeposit.spec.ts +++ b/core/tests/protocols/yearnDeposit.spec.ts @@ -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, @@ -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,