mirror of
https://github.com/status-im/web3.js.git
synced 2025-02-24 12:08:22 +00:00
14 lines
230 B
JavaScript
14 lines
230 B
JavaScript
var testMethod = require('./helpers/test.method.js');
|
|
|
|
var method = 'isMining';
|
|
var call = 'eth_mining';
|
|
|
|
var tests = [{
|
|
result: true,
|
|
formattedResult: true,
|
|
call: call
|
|
}];
|
|
|
|
|
|
testMethod.runTests('eth', method, tests);
|