mirror of openzeppelin-contracts
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.
 
 
 
 
 
openzeppelin-contracts/test/sanity.test.js

40 lines
1.3 KiB

const { ethers } = require('hardhat');
const { expect } = require('chai');
const { loadFixture, mine } = require('@nomicfoundation/hardhat-network-helpers');
async function fixture() {
const signers = await ethers.getSigners();
const addresses = await Promise.all(signers.map(s => s.getAddress()));
return { signers, addresses };
}
contract('Environment sanity', function (accounts) {
beforeEach(async function () {
Object.assign(this, await loadFixture(fixture));
});
describe('[skip-on-coverage] signers', function () {
it('match accounts', async function () {
expect(this.addresses).to.deep.equal(accounts);
});
it('signer #0 is skipped', async function () {
const signer = await ethers.provider.getSigner(0);
expect(this.addresses).to.not.include(await signer.getAddress());
});
});
describe('snapshot', function () {
let blockNumberBefore;
it('cache and mine', async function () {
blockNumberBefore = await ethers.provider.getBlockNumber();
await mine();
expect(await ethers.provider.getBlockNumber()).to.be.equal(blockNumberBefore + 1);
});
it('check snapshot', async function () {
expect(await ethers.provider.getBlockNumber()).to.be.equal(blockNumberBefore);
});
});
});