You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
531 B
18 lines
531 B
const { ethers } = require('hardhat');
|
|
const { loadFixture } = require('@nomicfoundation/hardhat-network-helpers');
|
|
|
|
const { shouldBehaveLikeRegularContext } = require('./Context.behavior');
|
|
|
|
async function fixture() {
|
|
const [sender] = await ethers.getSigners();
|
|
const context = await ethers.deployContract('ContextMock', []);
|
|
return { sender, context };
|
|
}
|
|
|
|
describe('Context', function () {
|
|
beforeEach(async function () {
|
|
Object.assign(this, await loadFixture(fixture));
|
|
});
|
|
|
|
shouldBehaveLikeRegularContext();
|
|
});
|
|
|