Files
openzeppelin-contracts/test/utils/introspection/ERC165.test.js
Hadrien Croubois c1d9da4052 Use hardhat-exposed to reduce the need for mocks (#3666)
Co-authored-by: Francisco <fg@frang.io>
2023-01-03 14:38:13 +00:00

14 lines
285 B
JavaScript

const { shouldSupportInterfaces } = require('./SupportsInterface.behavior');
const ERC165 = artifacts.require('$ERC165');
contract('ERC165', function () {
beforeEach(async function () {
this.mock = await ERC165.new();
});
shouldSupportInterfaces([
'ERC165',
]);
});