From: Chris Duncan Date: Thu, 21 Nov 2024 03:36:04 +0000 (-0800) Subject: Remove redundant ckd performance test. X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=30ee62086a63ef9058317deb930979cfad80399f;p=libnemo.git Remove redundant ckd performance test. --- diff --git a/test/derive-accounts.test.mjs b/test/derive-accounts.test.mjs index 6d44cca..1d9203a 100644 --- a/test/derive-accounts.test.mjs +++ b/test/derive-accounts.test.mjs @@ -85,23 +85,3 @@ describe('Ledger device accounts', { skip: true }, async () => { assert.ok(accounts[0].address) }) }) - -describe('child key derivation performance', { skip: true }, async () => { - it('performance test of BIP-44 ckd', async () => { - const wallet = await Bip44Wallet.create(NANO_TEST_VECTORS.PASSWORD) - await wallet.unlock(NANO_TEST_VECTORS.PASSWORD) - - const accounts = await wallet.accounts(0, 0x7fff) - - assert.equal(accounts.length, 0x8000) - }) - - it('performance test of BLAKE2b ckd', async () => { - const wallet = await Blake2bWallet.create(NANO_TEST_VECTORS.PASSWORD) - await wallet.unlock(NANO_TEST_VECTORS.PASSWORD) - - const accounts = await wallet.accounts(0, 0x7fff) - - assert.equal(accounts.length, 0x8000) - }) -})