mirror of
https://github.com/status-im/web3.js.git
synced 2025-02-22 19:18:07 +00:00
16 lines
516 B
JavaScript
16 lines
516 B
JavaScript
var chai = require('chai');
|
|
var assert = chai.assert;
|
|
var u = require('./helpers/test.utils.js');
|
|
var Personal = require('../packages/web3-personal');
|
|
var personal = new Personal();
|
|
|
|
describe('web3.net', function() {
|
|
describe('methods', function() {
|
|
u.methodExists(personal, 'getAccounts');
|
|
u.methodExists(personal, 'newAccount');
|
|
u.methodExists(personal, 'unlockAccount');
|
|
u.methodExists(personal, 'lockAccount');
|
|
u.methodExists(personal, 'sendTransaction');
|
|
});
|
|
});
|