diff --git a/README.md b/README.md index b820bbf0..a658f45d 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,15 @@ $ npx hardhat compile $ TS_NODE_TRANSPILE_ONLY=true npx hardhat coverage ``` +**Weird test failures or plugin conflicts?** + +```sh +# Setting the `SOLIDITY_COVERAGE` env variable tells the coverage plugin to configure the provider +# early in the hardhat task cycle, minimizing conflicts with other plugins or `extendEnvironment` hooks + +$ SOLIDITY_COVERAGE=true npx hardhat coverage +``` + **Additional Help** + [FAQ][1007] + [Advanced Topics][1005] diff --git a/test/sources/projects/viem/test/lock.js b/test/sources/projects/viem/test/lock.js index 5ae4f650..255899d8 100644 --- a/test/sources/projects/viem/test/lock.js +++ b/test/sources/projects/viem/test/lock.js @@ -117,7 +117,7 @@ describe("Lock", function () { }); }); - describe.skip("Events", function () { + describe("Events", function () { it("Should emit an event on withdrawals", async function () { const { lock, unlockTime, lockedAmount, publicClient } = await loadFixture(deployOneYearLockFixture);