dexorder
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
const { ethers } = require('hardhat');
|
||||
const { loadFixture } = require('@nomicfoundation/hardhat-network-helpers');
|
||||
|
||||
const { shouldSupportInterfaces } = require('./SupportsInterface.behavior');
|
||||
|
||||
async function fixture() {
|
||||
return {
|
||||
mock: await ethers.deployContract('$ERC165'),
|
||||
};
|
||||
}
|
||||
|
||||
describe('ERC165', function () {
|
||||
beforeEach(async function () {
|
||||
Object.assign(this, await loadFixture(fixture));
|
||||
});
|
||||
|
||||
shouldSupportInterfaces();
|
||||
});
|
||||
Reference in New Issue
Block a user