]> zoso.dev Git - libnemo.git/commitdiff
Use arrow notation for tests.
authorChris Duncan <chris@zoso.dev>
Wed, 20 Nov 2024 00:44:14 +0000 (16:44 -0800)
committerChris Duncan <chris@zoso.dev>
Wed, 20 Nov 2024 00:44:14 +0000 (16:44 -0800)
test/derive-accounts.test.mjs

index 616e3a236dd24e116a1f4d3979c97584188bb106..d5ea22efee1f6b1d584bbe87c75cb1bc52dda492 100644 (file)
@@ -9,7 +9,7 @@ import { strict as assert } from 'assert'
 import { NANO_TEST_VECTORS } from './TEST_VECTORS.js'\r
 import { Bip44Wallet, Blake2bWallet, LedgerWallet } from '../dist/main.js'\r
 \r
-describe('derive child accounts from the same seed', async function () {\r
+describe('derive child accounts from the same seed', async () => {\r
        const wallet = await Bip44Wallet.fromSeed(NANO_TEST_VECTORS.PASSWORD, NANO_TEST_VECTORS.BIP39_SEED)\r
        await wallet.unlock(NANO_TEST_VECTORS.PASSWORD)\r
 \r
@@ -87,7 +87,7 @@ describe('Ledger device accounts', { skip: true }, async () => {
 })\r
 \r
 describe('child key derivation performance', { skip: true }, async () => {\r
-       it('performance test of BIP-44 ckd', async function () {\r
+       it('performance test of BIP-44 ckd', async () => {\r
                const wallet = await Bip44Wallet.create(NANO_TEST_VECTORS.PASSWORD)\r
                await wallet.unlock(NANO_TEST_VECTORS.PASSWORD)\r
 \r
@@ -96,7 +96,7 @@ describe('child key derivation performance', { skip: true }, async () => {
                assert.equal(accounts.length, 0x8000)\r
        })\r
 \r
-       it('performance test of BLAKE2b ckd', async function () {\r
+       it('performance test of BLAKE2b ckd', async () => {\r
                const wallet = await Blake2bWallet.create(NANO_TEST_VECTORS.PASSWORD)\r
                await wallet.unlock(NANO_TEST_VECTORS.PASSWORD)\r
 \r