# 在Visual Studio代码上运行测试

通过使用Mocha集成插件,你可以从Visual Studio Code(opens new window) 运行测试,我们推荐使用Mocha Test Explorer(opens new window)

要使用Mocha Test Explorer,你需要按照以下说明安装它。

通过运行这个命令在本地安装Mocha:

npm install --save-dev mocha

然后,在项目根目录下创建一个名为.mocharc.json的文件,内容如下:

{
  "require": "hardhat/register",
  "timeout": 20000
}

最后,你可以为这个VS Code命令test-explorer.run-test-at-cursor设置一个快捷键,你会发现能够对当前正在编辑的文件运行测试。

# 运行TypeScript测试

Visual Studio Code(opens new window) 运行用TypeScript编写的测试需要两个额外的步骤。

首先,你必须把.mocharc.json改成这样:


 



{
  "require": "ts-node/register/files",
  "timeout": 20000
}

然后,需将vscode选项"mochaExplorer.files"设置为"test/**/*.{j,t}s"

如果需要任何帮助或反馈,你可以在Hardhat Support Discord服务器(opens new window) 找到我们。

Last Updated: 4/16/2021, 11:40:22 AM