feat(getTokenData2): Adding token icon and media retrieval

This commit is contained in:
Chris Troutner
2022-10-07 06:01:23 -07:00
parent d6f9b1b754
commit 48d13ed6bc
4 changed files with 97 additions and 25 deletions
+30
View File
@@ -344,4 +344,34 @@ describe('#bch-use-case', () => {
}
})
})
describe('#getTokenData2', () => {
it('should validate a utxo', async () => {
// Force connection to a wallet service
uut.ipfs.ipfsCoordAdapter.state = {
selectedServiceProvider: 'abc123'
}
// Mock depenencies
sandbox.stub(uut, 'waitForRPCResponse').resolves({ key: 'value' })
const tokenId = 'blah'
const result = await uut.getTokenData2(tokenId)
// console.log('result: ', result)
assert.equal(result.key, 'value')
})
it('should catch and throw an error', async () => {
try {
await uut.getTokenData2()
assert.fail('Unexpected code path')
} catch (err) {
// console.log(err)
assert.equal(err.message, 'test error')
}
})
})
})