forked from ArtBlocks/artblocks-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.solcover.js
28 lines (28 loc) · 842 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
module.exports = {
skipFiles: [
"interfaces/",
"legacy/",
"libs/",
"mock/",
"PBAB+Collabs/art-blocks-x-pace/",
"PBAB+Collabs/artcode/",
"PBAB+Collabs/bright-moments/",
"PBAB+Collabs/colors-and-shapes/",
"PBAB+Collabs/crypto-citizens/",
"PBAB+Collabs/doodle-labs/",
"PBAB+Collabs/fireworks/",
"PBAB+Collabs/flutter/",
"PBAB+Collabs/legends-of-metaterra/",
"PBAB+Collabs/mechsuit/",
"PBAB+Collabs/plottables/",
"PBAB+Collabs/tboa/",
"BasicRandomizer.sol",
"BasicRandomizerV2.sol",
],
mocha: {
// coverage distorts gas tests, so disable it
// ref: https://github.com/sc-forks/solidity-coverage/blob/master/docs/advanced.md#skipping-tests
grep: "@skip-on-coverage", // Find everything with this tag
invert: true, // Run the grep's inverse set.
},
};