Update Test Helpers to 0.5.6 (#2261)

* update test-helpers to 0.5.6-rc.0

* remove comment that no longer applies

* fix uses of expectEvent.notEmitted

* remove mocha only

* update to final version

* Update test/token/ERC777/ERC777.test.js

Co-authored-by: Nicolás Venturo <nicolas.venturo@gmail.com>

Co-authored-by: Nicolás Venturo <nicolas.venturo@gmail.com>
This commit is contained in:
Francisco Giordano
2020-06-02 17:00:56 -03:00
committed by GitHub
parent 91516b2318
commit ccfd370b89
4 changed files with 25 additions and 13 deletions

View File

@ -60,8 +60,8 @@ describe('ERC777', function () {
});
});
it.skip('does not emit AuthorizedOperator events for default operators', async function () {
expectEvent.not.inConstructor(this.token, 'AuthorizedOperator'); // This helper needs to be implemented
it('does not emit AuthorizedOperator events for default operators', async function () {
await expectEvent.notEmitted.inConstruction(this.token, 'AuthorizedOperator');
});
describe('basic information', function () {