From 82d644f27471045c5136bbf9d790df8b913cb892 Mon Sep 17 00:00:00 2001 From: Klaus Hott Vidal Date: Thu, 30 Nov 2017 11:28:15 +1300 Subject: [PATCH] extra check --- test/vestingAdvisorsTests.js | 5 +++++ test/vestingFoundersTests.js | 5 +++++ test/vestingReserveTests.js | 5 +++++ 3 files changed, 15 insertions(+) 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 + ); }); }); });