Skip to content

Commit

Permalink
chore: Config updates
Browse files Browse the repository at this point in the history
  • Loading branch information
PacificYield committed Nov 7, 2024
1 parent 3c986c4 commit d06396e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
*
!contracts/**
contracts/mocks/**
!package.json
!README.md
!LICENSE
18 changes: 8 additions & 10 deletions .solcover.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
module.exports = {
istanbulReporter: ["html", "lcov"],
providerOptions: {
mnemonic: process.env.MNEMONIC,
},
skipFiles: ["test", "fhevmTemp"],
mocha: {
fgrep: "[skip-on-coverage]",
invert: true,
},
export const istanbulReporter = ["html", "lcov"];
export const providerOptions = {
mnemonic: process.env.MNEMONIC,
};
export const skipFiles = ["mocks", "test", "fhevmTemp"];
export const mocha = {
fgrep: "[skip-on-coverage]",
invert: true,
};

0 comments on commit d06396e

Please sign in to comment.