]> zoso.dev Git - libnemo.git/commitdiff
Lock and unlock is pretty solid, so remove flag for skipping relevant tests.
authorChris Duncan <chris@zoso.dev>
Tue, 19 Nov 2024 07:13:02 +0000 (23:13 -0800)
committerChris Duncan <chris@zoso.dev>
Tue, 19 Nov 2024 07:13:02 +0000 (23:13 -0800)
test/lock-unlock-wallet.mjs

index e75b1097bacecf767d6052599549436211113cba..a8b3042a1edcd414a97b261392c2045124f24e66 100644 (file)
@@ -9,9 +9,7 @@ import { strict as assert } from 'assert'
 import { NANO_TEST_VECTORS, TREZOR_TEST_VECTORS } from './TEST_VECTORS.js'\r
 import { Bip44Wallet, Blake2bWallet } from '../dist/main.js'\r
 \r
-const skip = false\r
-\r
-describe('locking and unlocking a Bip44Wallet', { skip }, async () => {\r
+describe('locking and unlocking a Bip44Wallet', async () => {\r
        it('should succeed with a password', async () => {\r
                const wallet = await Bip44Wallet.fromMnemonic(NANO_TEST_VECTORS.PASSWORD, NANO_TEST_VECTORS.MNEMONIC, NANO_TEST_VECTORS.PASSWORD)\r
 \r
@@ -128,7 +126,7 @@ describe('locking and unlocking a Bip44Wallet', { skip }, async () => {
        })\r
 })\r
 \r
-describe('locking and unlocking a Blake2bWallet', { skip }, async () => {\r
+describe('locking and unlocking a Blake2bWallet', async () => {\r
        it('should succeed with a password', async () => {\r
                const wallet = await Blake2bWallet.fromSeed(NANO_TEST_VECTORS.PASSWORD, TREZOR_TEST_VECTORS.ENTROPY_0)\r
 \r