1234567891011121314151617181920212223242526 |
- import { artifacts, ethers, waffle } from "hardhat";
- import type { Artifact } from "hardhat/types";
- import type { SignerWithAddress } from "@nomiclabs/hardhat-ethers/dist/src/signer-with-address";
- import type { Greeter } from "../../src/types/Greeter";
- import { Signers } from "../types";
- import { shouldBehaveLikeGreeter } from "./Greeter.behavior";
- describe("Unit tests", function () {
- before(async function () {
- this.signers = {} as Signers;
- const signers: SignerWithAddress[] = await ethers.getSigners();
- this.signers.admin = signers[0];
- });
- describe("Greeter", function () {
- beforeEach(async function () {
- const greeting: string = "Hello, world!";
- const greeterArtifact: Artifact = await artifacts.readArtifact("Greeter");
- this.greeter = <Greeter>await waffle.deployContract(this.signers.admin, greeterArtifact, [greeting]);
- });
- shouldBehaveLikeGreeter();
- });
- });
|