X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tests%2Fspec%2Ftests.js;h=19d6b32961fcbe750814d305fa10a6c30520f8f9;hb=0afecfc73c8b700e99f91d8fe7ec063e7b0daf86;hp=ddb909a6d67b2b7d6bf4152478f35294fe1f13ad;hpb=f83d786dd7c26e5b3e4feac22f14893464f9f8c4;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git diff --git a/tests/spec/tests.js b/tests/spec/tests.js index ddb909a..19d6b32 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js @@ -1264,6 +1264,13 @@ it('Allows selection of Callisto', function(done) { }; testNetwork(done, params); }); +it('Allows selection of HUSH', function(done) { + var params = { + selectText: "HUSH - Hush", + firstAddress: "t1g6rLXUnJaiJuu4q4zmJjoa9Gk4fwKpiuA", + }; + testNetwork(done, params); +}); // BIP39 seed is set from phrase @@ -2877,6 +2884,13 @@ it('Can set the derivation path on bip32 tab for multibit', function(done) { useHardenedAddresses: null, }); }); +it('Can set the derivation path on bip32 tab for coinomi/ledger', function(done) { + testClientSelect(done, { + selectValue: "3", + bip32path: "m/44'/0'/0'", + useHardenedAddresses: null, + }); +}); // github issue 58 // https://github.com/iancoleman/bip39/issues/58