Guest User

Untitled

a guest
Mar 13th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. it('any account should have the tokens transfered to it', async () => {
  2. const amount = toWei(10);
  3. await this.hello_erc20.transfer(holder, amount)
  4. const balance = await this.hello_erc20.balanceOf(holder);
  5. balance.should.be.bignumber.equal(amount);
  6. });
Add Comment
Please, Sign In to add comment