From b30ccd6dd288e39a2c8a42ee2b71dddfcd0e78ed Mon Sep 17 00:00:00 2001 From: The3D Date: Tue, 6 Oct 2020 11:28:46 +0200 Subject: [PATCH] Added test on disable stable borrow rate --- test/configurator.spec.ts | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/test/configurator.spec.ts b/test/configurator.spec.ts index 5b5bbe8c..865e2b8a 100644 --- a/test/configurator.spec.ts +++ b/test/configurator.spec.ts @@ -280,9 +280,27 @@ makeSuite('LendingPoolConfigurator', (testEnv: TestEnv) => { it('Enables stable borrow rate on the ETH reserve', async () => { const {configurator, pool, weth} = testEnv; await configurator.enableReserveStableRate(weth.address); - const {stableBorrowRateEnabled} = await pool.getReserveConfigurationData(weth.address); + const { + decimals, + ltv, + liquidationBonus, + liquidationThreshold, + reserveFactor, + stableBorrowRateEnabled, + borrowingEnabled, + isActive, + isFreezed, + } = await pool.getReserveConfigurationData(weth.address); + + expect(borrowingEnabled).to.be.equal(true); + expect(isActive).to.be.equal(true); + expect(isFreezed).to.be.equal(false); + expect(decimals).to.be.equal(18); + expect(ltv).to.be.equal(7500); + expect(liquidationThreshold).to.be.equal(8000); + expect(liquidationBonus).to.be.equal(10500); expect(stableBorrowRateEnabled).to.be.equal(true); - }); + expect(reserveFactor).to.be.equal(0); }); it('Check the onlyAaveAdmin on disableReserveStableRate', async () => { const {configurator, users, weth} = testEnv;