ditch amount hardcodings

This commit is contained in:
hueso 2024-03-03 19:18:13 -03:00
parent 4f63d17eb1
commit 7d8e0f13bb
1 changed files with 7 additions and 11 deletions

View File

@ -94,12 +94,8 @@ describe("P2PIX", () => {
expect(p2pix).to.be.ok;
expect(erc20).to.be.ok;
expect(reputation).to.be.ok;
const ownerKey = await p2pix._castAddrToKey(
owner.address,
);
const acc01Key = await p2pix._castAddrToKey(
acc01.address,
);
const ownerKey = await p2pix._castAddrToKey(owner.address);
const acc01Key = await p2pix._castAddrToKey(acc01.address);
// storage checks
expect(
@ -175,7 +171,7 @@ describe("P2PIX", () => {
await expect(p2pix.withdrawBalance())
.to.changeEtherBalances(
[owner.address, p2pix.address],
[price, "-100000000000000000000"],
[price, price.mul(-1)],
)
.and.to.emit(p2pix, "FundsWithdrawn")
.withArgs(owner.address, price);
@ -388,7 +384,7 @@ describe("P2PIX", () => {
await expect(tx).to.changeTokenBalances(
erc20,
[owner.address, p2pix.address],
["-100000000000000000000", price],
[price.mul(-1), price],
);
expect(storage).to.eq(price);
expect(pixTarget).to.eq(await p2pix.callStatic.getStr(pTarget));
@ -568,7 +564,7 @@ describe("P2PIX", () => {
const tx = transactions[i];
const addr = addresses[i];
const depositPrice = depositPrices[i];
const amount = `-${(i + 1) * 100000000000000000000}`;
const amount = ethers.utils.parseEther("100").mul(i+1).mul(-1).toBigInt();
await expect(tx)
.to.emit(p2pix, "DepositAdded")
@ -2039,7 +2035,7 @@ describe("P2PIX", () => {
.to.changeTokenBalance(
erc20,
owner.address,
"-100000000000000000000",
price.mul(-1),
)
.and.to.changeTokenBalance(
erc20,
@ -2051,7 +2047,7 @@ describe("P2PIX", () => {
.and.to.changeTokenBalance(
erc20,
p2pix.address,
"-50000000000000000000",
price.div(ethers.constants.Two).mul(-1),
);
await expect(tx)