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.
17 lines
516 B
17 lines
516 B
const { ethers } = require('hardhat');
|
|
const { loadFixture } = require('@nomicfoundation/hardhat-network-helpers');
|
|
const { shouldBehaveLikeNonces, shouldBehaveLikeNoncesKeyed } = require('./Nonces.behavior');
|
|
|
|
async function fixture() {
|
|
const mock = await ethers.deployContract('$NoncesKeyed');
|
|
return { mock };
|
|
}
|
|
|
|
describe('NoncesKeyed', function () {
|
|
beforeEach(async function () {
|
|
Object.assign(this, await loadFixture(fixture));
|
|
});
|
|
|
|
shouldBehaveLikeNonces();
|
|
shouldBehaveLikeNoncesKeyed();
|
|
});
|
|
|