We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 338ad90 commit b5280d3Copy full SHA for b5280d3
2 files changed
.gitignore
@@ -22,3 +22,6 @@ docs/
22
23
# NPM modules
24
node_modules
25
+
26
+# Soljson
27
+soljson-latest.js
Makefile
@@ -31,7 +31,7 @@ invariant:
31
@./test.sh -d test/invariant -p $(profile)
32
33
coverage:
34
- FOUNDRY_PROFILE=$(profile) forge coverage --no-match-path 'test/invariant/**/*.sol' --report lcov && lcov --extract lcov.info -o lcov.info 'src/*' && genhtml lcov.info -o coverage
+ FOUNDRY_PROFILE=$(profile) forge coverage --report lcov && lcov --extract lcov.info -o lcov.info 'src/*' && genhtml lcov.info -o coverage
35
36
gas-report:
37
FOUNDRY_PROFILE=$(profile) forge test --gas-report > gasreport.ansi
0 commit comments