]> zoso.dev Git - libnemo.git/commitdiff
Skip wallet performance tests for now while refactoring ckd functions.
authorChris Duncan <chris@zoso.dev>
Thu, 21 Nov 2024 05:53:43 +0000 (21:53 -0800)
committerChris Duncan <chris@zoso.dev>
Thu, 21 Nov 2024 05:53:43 +0000 (21:53 -0800)
perf/wallet.perf.mjs

index bc90281dbac49972887ca950c69b011fb0ca42e7..63d185bd2ecef47c84cc00a7391877616e24ad46 100644 (file)
@@ -11,7 +11,7 @@ import { Bip44Wallet, Blake2bWallet } from '#dist/main.js'
 
 console.log('wallet performance test')
 
-test('creating BIP-44 wallets', async () => {
+test('creating BIP-44 wallets', { skip: true }, async () => {
        const wallets = []
        for (let i = 0x80; i > 0; i--) {
                wallets.push(await Bip44Wallet.create(NANO_TEST_VECTORS.PASSWORD))
@@ -19,7 +19,7 @@ test('creating BIP-44 wallets', async () => {
        assert.equal(wallets.length, 0x80)
 })
 
-test('creating BLAKE2b wallets', async () => {
+test('creating BLAKE2b wallets', { skip: true }, async () => {
        const wallets = []
        for (let i = 0x80; i > 0; i--) {
                wallets.push(await Blake2bWallet.create(NANO_TEST_VECTORS.PASSWORD))