You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be good to enable hardhat coverage in this template repo as a PoC.
I just went through the exercise on a project utilising this template and had to do the following to get hardhat coverage to work:
install and import @nomicfoundation/hardhat-toolbox in hardhat.config.ts
Install all the external libs/pkgs in ./lib using your project's node package manager(i.e. yarn, npm or pnpm) and ensure that these packages are now visible in the package.json and node_modules
before running hardhat coverage you'll first have to comment out the preprocess config in the HardhatUserConfig to disable it
The text was updated successfully, but these errors were encountered:
It would be good to enable hardhat coverage in this template repo as a PoC.
I just went through the exercise on a project utilising this template and had to do the following to get
hardhat coverage
to work:@nomicfoundation/hardhat-toolbox
inhardhat.config.ts
./lib
using your project's node package manager(i.e. yarn, npm or pnpm) and ensure that these packages are now visible in thepackage.json
andnode_modules
hardhat coverage
you'll first have to comment out thepreprocess
config in theHardhatUserConfig
to disable itThe text was updated successfully, but these errors were encountered: