Skip to content

Commit b5280d3

Browse files
authored
chore: add soljson to gitignore and update coverage command (#3)
* chore(gitignore): ignore soljson * chore(Makefile): remove coverage cmd no-match-path
1 parent 338ad90 commit b5280d3

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@ docs/
2222

2323
# NPM modules
2424
node_modules
25+
26+
# Soljson
27+
soljson-latest.js

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ invariant:
3131
@./test.sh -d test/invariant -p $(profile)
3232

3333
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
34+
FOUNDRY_PROFILE=$(profile) forge coverage --report lcov && lcov --extract lcov.info -o lcov.info 'src/*' && genhtml lcov.info -o coverage
3535

3636
gas-report:
3737
FOUNDRY_PROFILE=$(profile) forge test --gas-report > gasreport.ansi

0 commit comments

Comments
 (0)