You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
774 B
25 lines
774 B
/**
|
|
* @packageDocumentation
|
|
* @module harmony-account
|
|
* @ignore
|
|
*/
|
|
|
|
import { Account } from '../src/account';
|
|
import { HttpProvider, Messenger } from '@harmony-js/network';
|
|
import { ChainType, ChainID } from '@harmony-js/utils';
|
|
|
|
const provider = new HttpProvider('http://localhost:9500');
|
|
const messenger = new Messenger(provider, ChainType.Harmony, ChainID.HmyLocal);
|
|
|
|
describe('test account', () => {
|
|
it('test Account.getBalance returns object that implements Balance interface', () => {
|
|
const acc = Account.new();
|
|
acc.setMessenger(messenger);
|
|
acc.getBalance().then((res) => {
|
|
expect(res).not.toBeNull();
|
|
expect(res.balance).not.toBeNull();
|
|
expect(res.nonce).not.toBeNull();
|
|
expect(res.shardID).not.toBeNull();
|
|
});
|
|
});
|
|
});
|
|
|