The develatus-apparatus (π) acts as a RPC proxy between your node and application / integration tests.
It intercepts eth_call
, eth_sendTransaction
and eth_sendRawTransaction
calls and uses debug_trace{Transaction||Call}
to create
a coverage report for Contracts it derives from your build artifacts.
- Tested with geth v1.9.25.
- Uses the
debug_trace{Transaction||Call}
- JavaScript Tracer - You may have to enable the debug-rpc api. Like
--rpcapi=eth,net,web3,debug
Just run develatus-apparatus
inside your project folder,
it reads a configuration file named .develatus-apparatus.js
.
Example contents of that file:
export default {
testCommand: 'yarn mocha --timeout 120000 test/contracts/*.js',
artifactsPath: 'build/contracts',
proxyPort: 8333,
rpcUrl: 'http://localhost:8222',
fuzzyMatchFactor: 0.8,
ignore: /(mocks|test)\/.*\.sol/,
solcSettings: {
evmVersion: 'istanbul',
optimizer: {
enabled: true,
runs: 256,
details: {
peephole: true,
jumpdestRemover: true,
orderLiterals: false,
deduplicate: true,
cse: true,
constantOptimizer: true,
yul: false,
},
},
metadata: {
'bytecodeHash': 'none',
},
},
};