Skip to content

Commit

Permalink
extra check
Browse files Browse the repository at this point in the history
  • Loading branch information
Janther committed Nov 29, 2017
1 parent 78ef860 commit 82d644f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/vestingAdvisorsTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
});
});
});
5 changes: 5 additions & 0 deletions test/vestingFoundersTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
});
});
});
5 changes: 5 additions & 0 deletions test/vestingReserveTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
});
});
});

0 comments on commit 82d644f

Please sign in to comment.