mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
99cbb5f0a4
- Unified error messages for tests on types.ts. - Finished migration of core-modifiers.spec.ts.
29 lines
1.0 KiB
TypeScript
29 lines
1.0 KiB
TypeScript
import {expect} from "chai";
|
|
import {makeSuite, TestEnv} from "./helpers/make-suite";
|
|
import {ProtocolErrors} from "../helpers/types";
|
|
|
|
makeSuite("AToken: Modifiers", (testEnv: TestEnv) => {
|
|
const {INVALID_POOL_CALLER_MSG_1} = ProtocolErrors;
|
|
|
|
it("Tries to invoke mintOnDeposit not being the LendingPool", async () => {
|
|
const {deployer, aDai} = testEnv;
|
|
await expect(aDai.mintOnDeposit(deployer.address, "1")).to.be.revertedWith(
|
|
INVALID_POOL_CALLER_MSG_1
|
|
);
|
|
});
|
|
|
|
it("Tries to invoke burnOnLiquidation not being the LendingPool", async () => {
|
|
const {deployer, aDai} = testEnv;
|
|
await expect(
|
|
aDai.burnOnLiquidation(deployer.address, "1")
|
|
).to.be.revertedWith(INVALID_POOL_CALLER_MSG_1);
|
|
});
|
|
|
|
it("Tries to invoke transferOnLiquidation not being the LendingPool", async () => {
|
|
const {deployer, users, aDai} = testEnv;
|
|
await expect(
|
|
aDai.transferOnLiquidation(deployer.address, users[0].address, "1")
|
|
).to.be.revertedWith(INVALID_POOL_CALLER_MSG_1);
|
|
});
|
|
});
|