-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy path.solcover.js
33 lines (29 loc) · 1.03 KB
/
.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
32
33
module.exports = {
copyPackages: ["@openzeppelin/contracts-ethereum-package"], // 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",
// Examples
"Gateway/adapters/BasicAdapter.sol",
"Gateway/examples/Vesting.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"
]
};