diff --git a/test/helpers/actions.ts b/test/helpers/actions.ts index 0d1d2775..3e60955d 100644 --- a/test/helpers/actions.ts +++ b/test/helpers/actions.ts @@ -375,19 +375,6 @@ export const borrow = async ( txCost ); - console.log("Expected available liquidity: ", expectedReserveData.availableLiquidity.toFixed()); - console.log("Expected total liquidity: ", expectedReserveData.totalLiquidity.toFixed()); - console.log("Expected total debt stable: ", expectedReserveData.totalStableDebt.toFixed()); - console.log("Expected total debt variable: ", expectedReserveData.totalVariableDebt.toFixed()); - console.log("Expected utilization rate: ", expectedReserveData.utilizationRate.toFixed()); - - console.log("actual available liquidity: ", reserveDataAfter.availableLiquidity.toFixed()); - console.log("actual total liquidity: ", reserveDataAfter.totalLiquidity.toFixed()); - console.log("actual total debt stable: ", reserveDataAfter.totalStableDebt.toFixed()); - console.log("actual total debt variable: ", reserveDataAfter.totalVariableDebt.toFixed()); - console.log("actual utilization rate: ", reserveDataAfter.utilizationRate.toFixed()); - console.log("User debt: ", userDataAfter.currentStableDebt.toFixed(0)); - expectEqual(reserveDataAfter, expectedReserveData); expectEqual(userDataAfter, expectedUserData); diff --git a/test/scenario.spec.ts b/test/scenario.spec.ts index ee45a08f..98e0c164 100644 --- a/test/scenario.spec.ts +++ b/test/scenario.spec.ts @@ -10,7 +10,7 @@ import {executeStory} from './helpers/scenario-engine'; const scenarioFolder = './test/helpers/scenarios/'; -const selectedScenarios: string[] = ['withdraw.json']; +const selectedScenarios: string[] = ['borrow-repay-variable.json']; fs.readdirSync(scenarioFolder).forEach((file) => { if (selectedScenarios.length > 0 && !selectedScenarios.includes(file)) return;