]> zoso.dev Git - libnemo.git/commitdiff
Test new wallet ID getter.
authorChris Duncan <chris@zoso.dev>
Sun, 13 Oct 2024 03:36:37 +0000 (20:36 -0700)
committerChris Duncan <chris@zoso.dev>
Sun, 13 Oct 2024 03:36:37 +0000 (20:36 -0700)
test/create-wallet.test.mjs
test/refresh-accounts.test.mjs

index 256eb812b7821ba2bb3d145053dc1e009c2a07c3..bbb18d6877349630583d5f2a722531c61422d12c 100644 (file)
@@ -34,6 +34,7 @@ describe('generate wallet test', async () => {
                await wallet.unlock(NANO_TEST_VECTORS.PASSWORD)\r
                const accounts = await wallet.accounts()\r
 \r
+               assert.ok('id' in wallet)\r
                assert.ok('mnemonic' in wallet)\r
                assert.ok('seed' in wallet)\r
                assert.ok(accounts[0] instanceof Account)\r
@@ -44,6 +45,7 @@ describe('generate wallet test', async () => {
                await wallet.unlock(NANO_TEST_VECTORS.PASSWORD)\r
                const accounts = await wallet.accounts()\r
 \r
+               assert.ok('id' in wallet)\r
                assert.ok('mnemonic' in wallet)\r
                assert.ok('seed' in wallet)\r
                assert.ok(accounts[0] instanceof Account)\r
index 19477d7e5945725e806e8d286cde0360ca479044..9dfc8fd9bf293dde977869ab14844e808c0af217 100644 (file)
@@ -15,7 +15,7 @@ const wallet = await Bip44Wallet.fromSeed(NANO_TEST_VECTORS.PASSWORD, NANO_TEST_
 await wallet.unlock(NANO_TEST_VECTORS.PASSWORD)
 const node = new Node(process.env.NODE_URL, process.env.API_KEY_NAME, process.env.API_KEY_VALUE)
 
-const skip = false
+const skip = true
 
 describe('refreshing account info', { skip }, async () => {
        it('should fetch balance, frontier, and representative', async () => {