forked from renproject/darknode-sol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.solcover.js
29 lines (26 loc) · 925 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
module.exports = {
copyPackages: ["@openzeppelin/contracts"], // needed to import from node_modules
testrpcOptions: "-d --accounts 10 --port 8555",
skipFiles: [
// REN token
"RenToken/RenToken.sol",
// Contract for building bindings
"test/Bindings.sol",
// Migration contract
"migrations/Migrations.sol",
// Contracts for assisting the tests
"test/ERC20WithFeesTest.sol",
"test/tokens/ImpreciseToken.sol",
"test/tokens/SelfDestructingToken.sol",
"test/tokens/NonCompliantToken.sol",
"test/tokens/NormalToken.sol",
"test/tokens/ReturnsFalseToken.sol",
"test/tokens/TokenWithFees.sol",
"test/LinkedListTest.sol",
"test/ValidateTest.sol",
"test/StringTest.sol",
"test/CompareTest.sol",
"test/tokens/PaymentToken.sol",
"test/CycleChanger.sol",
],
};