Skip to content

Commit

Permalink
chore: fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jatZama committed Aug 9, 2024
1 parent f48df75 commit d6ffb4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/fundamentals/write_contract/hardhat.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ npx hardhat coverage

Then open the file `coverage/index.html` to see the coverage results. This will increase security by pointing out missing branches not covered yet by the current test suite.

**Notice :** Due to limitations in the solidity-coverage package, the coverage computation in fhEVM does not support tests involving the `evm_snapshot` hardhat testing method, however, this method is still supported when running tests in mocked mode! In case you are using hardhat snapshots, we recommend you to end your test description by the `[skip-on-coverage]` tag. Here is a concrete example for illustration purpose:
**Notice :** Due to limitations in the `solidity-coverage` package, the coverage computation in fhEVM does not support tests involving the `evm_snapshot`hardhat testing method, however, this method is still supported when running tests in mocked mode! In case you are using hardhat snapshots, we recommend you to end your test description by the`[skip-on-coverage]` tag. Here is a concrete example for illustration purpose:

```js
import { expect } from 'chai';
Expand Down

0 comments on commit d6ffb4b

Please sign in to comment.