-
Notifications
You must be signed in to change notification settings - Fork 2
/
.solcover.js
20 lines (18 loc) · 924 Bytes
/
.solcover.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports = {
skipFiles: [
'mock/CompileDummy.sol', // mock
'mock/CompileDummy2.sol', // mock
'mock/PriceTester.sol', // mock
'RelayerRegistryProposal.sol', // because MockProposal.sol is being tested, coverage adds bytecode so create2 checks have to differ
'utils/SingletonFactory.sol', // this was added as an EIP and is thus trusted
// --------------------------------------
// the below are ignored due to solcover not recognizing coverage with these files and
// spitting out false coverage reports for some reason
'staking/TornadoStakingRewards.sol',
'tornado-proxy/TornadoProxyRegistryUpgrade.sol',
// ModifiedTornadoProxy.sol
// although the proxy is modified, all of the logic stays the same a with the original proxy
// the most important change is that the Instances data structure has a new member
'tornado-proxy/ModifiedTornadoProxy.sol',
],
}