]> zoso.dev Git - libnemo.git/commitdiff
Missed an import. Adjust its assertions while we are here.
authorChris Duncan <chris@zoso.dev>
Thu, 5 Dec 2024 16:17:42 +0000 (08:17 -0800)
committerChris Duncan <chris@zoso.dev>
Thu, 5 Dec 2024 16:17:42 +0000 (08:17 -0800)
perf/account.perf.mjs

index 3b27cc8354c7c13aa33057ce226f7dfcbae4c89f..831f275330b0cd2beae40eb89117d4ed523cee5e 100644 (file)
@@ -4,8 +4,7 @@
 'use strict'
 
 import '#test/GLOBALS.mjs'
-import { test } from 'node:test'
-import { strict as assert } from 'assert'
+import { describe, expect, test } from '@jest/globals'
 import { NANO_TEST_VECTORS } from '#test/TEST_VECTORS.js'
 import { Bip44Wallet, Blake2bWallet } from '#dist/main.js'
 
@@ -17,7 +16,7 @@ test('BIP-44 ckd', async () => {
 
        const accounts = await wallet.accounts(0, 0x7fff)
 
-       assert.equal(accounts.length, 0x8000)
+       expect(accounts.length).toEqual(0x8000)
 })
 
 test('BLAKE2b ckd', async () => {
@@ -26,5 +25,5 @@ test('BLAKE2b ckd', async () => {
 
        const accounts = await wallet.accounts(0, 0x7fff)
 
-       assert.equal(accounts.length, 0x8000)
+       expect(accounts.length).toEqual(0x8000)
 })