尽管有官方测试文档

问题描述

根据 Hardhat 的 official testing documentationethers 应该在全局范围内隐式可用;但是,它可以选择显式 required,如下所示:

const { ethers } = require("hardhat");

这对我的本地项目失败了。

我的包清单似乎包含正确的依赖项:

{
  "dependencies": {
    "@nomiclabs/hardhat-ethers": "^2.0.1","@nomiclabs/hardhat-waffle": "^2.0.1","@openzeppelin/contracts": "https://github.com/OpenZeppelin/openzeppelin-contracts#v4.0.0-beta.0","chai": "^4.3.1","hardhat": "^2.0.11"
  }
}

我的单元测试文件似乎也与 Hardhat 文档中的工作示例相匹配:

const { ethers } = require("hardhat");
const { expect } = require("chai");

describe("distributor.sol",function() {
    it("distribution should fail for non-owners",async function() {
        const distributorFactory = await ethers.getContractFactory("distributor");
        const distributor = await distributor.deploy();

        distributor.distribute([],[]);

        expect(await hardhatToken.totalSupply()).to.be.revertedWith("foobar");
    });
});

尽管如此,运行测试失败:

$ yarn hardhat test
yarn run v1.22.5
$ /home/bob/dev/misc/token-distributor/node_modules/.bin/hardhat test


  distributor.sol
undefined
    1) distribution should fail for non-owners


  0 passing (9ms)
  1 failing

  1) distributor.sol
       distribution should fail for non-owners:
     TypeError: Cannot read property 'getContractFactory' of undefined
      at Context.<anonymous> (test/distributor.js:8:49)
      at processImmediate (internal/timers.js:461:21)



error Command Failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

我该如何解决这个问题?

解决方法

在您的 hardhat.config.js

中添加 require
require("@nomiclabs/hardhat-waffle");

并从您的测试文件中删除这一行:

const { ethers } = require("hardhat");

然后,您可以在测试中使用 ethers。在运行测试之前,Hardhat 首先查看配置。如果您需要一个包含 ethers 的包,您可以在全局范围内使用它。

,

两件事:

  1. 您也需要单独安装 ethers,如 instructions for hardhat-ethers 中所述,例如
    npm install --save-dev @nomiclabs/hardhat-ethers 'ethers@^5.0.0'

  2. 每个 Hardhat 插件都需要在 Hardhat 配置文件 (hardhat.config.js) 中注册:
    require("@nomiclabs/hardhat-ethers");

无需删除测试文件中的显式导入,但是,Hardhat 文档建议遵循这种风格:

const hre = require("hardhat);
const { ethers } = hre;

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...