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