Skip to content

Commit a1158f5

Browse files
authored
Document extendConfig changes in README (#885)
1 parent 4f5626d commit a1158f5

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,15 @@ $ npx hardhat compile
5656
$ TS_NODE_TRANSPILE_ONLY=true npx hardhat coverage
5757
```
5858

59+
**Weird test failures or plugin conflicts?**
60+
61+
```sh
62+
# Setting the `SOLIDITY_COVERAGE` env variable tells the coverage plugin to configure the provider
63+
# early in the hardhat task cycle, minimizing conflicts with other plugins or `extendEnvironment` hooks
64+
65+
$ SOLIDITY_COVERAGE=true npx hardhat coverage
66+
```
67+
5968
**Additional Help**
6069
+ [FAQ][1007]
6170
+ [Advanced Topics][1005]

test/sources/projects/viem/test/lock.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ describe("Lock", function () {
117117
});
118118
});
119119

120-
describe.skip("Events", function () {
120+
describe("Events", function () {
121121
it("Should emit an event on withdrawals", async function () {
122122
const { lock, unlockTime, lockedAmount, publicClient } =
123123
await loadFixture(deployOneYearLockFixture);

0 commit comments

Comments
 (0)