Add most of sendTokens() implementation

This commit is contained in:
Michael Vines
2018-08-23 20:10:30 -07:00
parent ac976a66f0
commit 41a658c336
2 changed files with 27 additions and 13 deletions

View File

@ -14,7 +14,7 @@ test.skip('get balance', async () => {
expect(balance).toBeGreaterThanOrEqual(0);
});
test.skip('throws on bad transaction', () => {
test.skip('throws on bad transaction confirmation', () => {
const connection = new Connection(url);
expect(connection.confirmTransaction('bad transaction signature'))
@ -55,4 +55,12 @@ test.skip('request airdrop', async () => {
expect(balance).toBe(42);
});
test.skip('throws on bad transaction', () => {
const account = new Account();
const connection = new Connection(url);
expect(connection.sendTokens(account, account.publicKey, 123))
.rejects.toThrow('Invalid request');
});