|
|
|
@ -76,12 +76,12 @@ directory. `dir` allows you to define a relative path from the root directory to |
|
|
|
|
folder. A `dir` of `./secretDirectory` would tell solidity-coverage to look for `./secretDirectory/contracts` |
|
|
|
|
|
|
|
|
|
**Example .solcover.js config file** |
|
|
|
|
``` |
|
|
|
|
```javascript |
|
|
|
|
module.exports = { |
|
|
|
|
port: 6545, |
|
|
|
|
testrpcOptions: '-p 6545 -u 0x54fd80d6ae7584d8e9a19fe1df43f04e5282cc43', |
|
|
|
|
testCommand: 'mocha --timeout 5000' |
|
|
|
|
norpc: 'true' |
|
|
|
|
testCommand: 'mocha --timeout 5000', |
|
|
|
|
norpc: true |
|
|
|
|
dir: './secretDirectory' |
|
|
|
|
}; |
|
|
|
|
``` |
|
|
|
|