File tree 2 files changed +10
-1
lines changed
test/sources/projects/viem/test
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,15 @@ $ npx hardhat compile
56
56
$ TS_NODE_TRANSPILE_ONLY=true npx hardhat coverage
57
57
```
58
58
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
+
59
68
** Additional Help**
60
69
+ [ FAQ] [ 1007 ]
61
70
+ [ Advanced Topics] [ 1005 ]
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ describe("Lock", function () {
117
117
} ) ;
118
118
} ) ;
119
119
120
- describe . skip ( "Events" , function ( ) {
120
+ describe ( "Events" , function ( ) {
121
121
it ( "Should emit an event on withdrawals" , async function ( ) {
122
122
const { lock, unlockTime, lockedAmount, publicClient } =
123
123
await loadFixture ( deployOneYearLockFixture ) ;
You can’t perform that action at this time.
0 commit comments