diff --git a/test/vestingAdvisorsTests.js b/test/vestingAdvisorsTests.js index 91d1ed6..d3ecc86 100644 --- a/test/vestingAdvisorsTests.js +++ b/test/vestingAdvisorsTests.js @@ -194,6 +194,11 @@ contract("PolyMathVesting", async function( (await tokenDeployed.balanceOf(owner)).toNumber(), 5000000 * 10 ** 18 ); + + assert.equal( + (await tokenDeployed.balanceOf(polyVestingDeployed.address)).toNumber(), + 20000000 * 10 ** 18 + ); }); }); }); diff --git a/test/vestingFoundersTests.js b/test/vestingFoundersTests.js index b973953..004e83a 100644 --- a/test/vestingFoundersTests.js +++ b/test/vestingFoundersTests.js @@ -239,6 +239,11 @@ contract("PolyMathVesting", async function( (await tokenDeployed.balanceOf(owner)).toNumber(), 10000000 * 10 ** 18 ); + + assert.equal( + (await tokenDeployed.balanceOf(polyVestingDeployed.address)).toNumber(), + 140000000 * 10 ** 18 + ); }); }); }); diff --git a/test/vestingReserveTests.js b/test/vestingReserveTests.js index f78162a..51b2084 100644 --- a/test/vestingReserveTests.js +++ b/test/vestingReserveTests.js @@ -202,6 +202,11 @@ contract("PolyMathVesting", async function( (await tokenDeployed.balanceOf(owner)).toNumber(), 50000000 * 10 ** 18 ); + + assert.equal( + (await tokenDeployed.balanceOf(polyVestingDeployed.address)).toNumber(), + 400000000 * 10 ** 18 + ); }); }); });