Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document extendConfig changes in README #885

Merged
merged 4 commits into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion test/sources/projects/viem/test/lock.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down