From 7325d6c4fbed4136a80cb5a61bbf4dc6beb992d4 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Wed, 20 Aug 2025 13:54:39 -0700 Subject: [PATCH] Skip online tests now that they are passing. --- test/test.refresh-accounts.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.refresh-accounts.mjs b/test/test.refresh-accounts.mjs index cbdb14a..c2c53c9 100644 --- a/test/test.refresh-accounts.mjs +++ b/test/test.refresh-accounts.mjs @@ -27,7 +27,7 @@ if (isNode) { const rpc = new Rpc(env.NODE_URL ?? '', env.API_KEY_NAME) await Promise.all([ - suite('Refreshing account info', { skip: false }, async () => { + suite('Refreshing account info', { skip: true }, async () => { await test('fetch balance, frontier, and representative', async () => { const wallet = await Wallet.load('BIP-44', NANO_TEST_VECTORS.PASSWORD, NANO_TEST_VECTORS.BIP39_SEED) @@ -163,7 +163,7 @@ await Promise.all([ }) }), - suite('Refreshing wallet accounts', { skip: false }, async () => { + suite('Refreshing wallet accounts', { skip: true }, async () => { await test('get balance, frontier, and representative for one account', async () => { const wallet = await Wallet.load('BIP-44', NANO_TEST_VECTORS.PASSWORD, NANO_TEST_VECTORS.BIP39_SEED) -- 2.47.3