Replace chai.should with chai.expect (#1780)

* changed exxpect to expect wherever applicable

* Merged with latest branch

* Updated merkleTree helper to latest master branch

* Made linting fixes

* Fix for test build

* updated for Coverage

* Updated Address.test.js

* Undo package-lock changes.
This commit is contained in:
Yohann Pereira
2019-06-24 16:40:05 -04:00
committed by Francisco Giordano
parent 852e11c2db
commit 489d2e85f1
57 changed files with 564 additions and 453 deletions

View File

@ -1,5 +1,7 @@
const { BN } = require('openzeppelin-test-helpers');
const { expect } = require('chai');
const ERC20DetailedMock = artifacts.require('ERC20DetailedMock');
contract('ERC20Detailed', function () {
@ -12,14 +14,14 @@ contract('ERC20Detailed', function () {
});
it('has a name', async function () {
(await this.detailedERC20.name()).should.be.equal(_name);
expect(await this.detailedERC20.name()).to.equal(_name);
});
it('has a symbol', async function () {
(await this.detailedERC20.symbol()).should.be.equal(_symbol);
expect(await this.detailedERC20.symbol()).to.equal(_symbol);
});
it('has an amount of decimals', async function () {
(await this.detailedERC20.decimals()).should.be.bignumber.equal(_decimals);
expect(await this.detailedERC20.decimals()).to.be.bignumber.equal(_decimals);
});
});