* Changed before for beforeAll, refactored Bouncer tests. * Fixed linter errors. * fix: updates for SignatureBouncer tests and voucher construction
25 lines
645 B
JavaScript
25 lines
645 B
JavaScript
const { shouldSupportInterfaces } = require('./SupportsInterface.behavior');
|
|
const { assertRevert } = require('../helpers/assertRevert');
|
|
|
|
const SupportsInterfaceWithLookup = artifacts.require('SupportsInterfaceWithLookupMock');
|
|
|
|
require('chai')
|
|
.use(require('chai-as-promised'))
|
|
.should();
|
|
|
|
contract('SupportsInterfaceWithLookup', function (accounts) {
|
|
beforeEach(async function () {
|
|
this.mock = await SupportsInterfaceWithLookup.new();
|
|
});
|
|
|
|
it('does not allow 0xffffffff', async function () {
|
|
await assertRevert(
|
|
this.mock.registerInterface(0xffffffff)
|
|
);
|
|
});
|
|
|
|
shouldSupportInterfaces([
|
|
'ERC165',
|
|
]);
|
|
});
|