forked from BitGo/eth-multisig-v4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.solcover.js
31 lines (30 loc) · 830 Bytes
/
.solcover.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
const accounts = require('./testrpc/accounts');
const defaultBalance = '200000000000000000000000000';
module.exports = {
mocha: {
reporter: 'spec',
enableTimeouts: false,
grep: '@skip-on-coverage', // Find everything with this tag
invert: true // Run the grep's inverse set.
},
skipFiles: [
'ERC20Interface.sol',
'test/Fail.sol',
'test/FixedSupplyToken.sol',
'test/ForwarderTarget.sol',
'test/GasGuzzler.sol',
'test/GasHeavy.sol',
'test/MockERC721.sol',
'test/Reentry.sol',
'test/ReentryForwarder.sol',
'test/ReentryWalletSimple.sol',
'test/TestBatcherDriver.sol',
'test/Tether.sol'
],
providerOptions: {
accounts: accounts.accounts.map(({ privkey }) => ({
secretKey: '0x' + privkey.toString('hex'),
balance: defaultBalance
}))
}
};