]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/BIP39.git/blobdiff - tests/spec/tests.js
Test for HUSH network
[perso/Immae/Projets/Cryptomonnaies/BIP39.git] / tests / spec / tests.js
index ddb909a6d67b2b7d6bf4152478f35294fe1f13ad..19d6b32961fcbe750814d305fa10a6c30520f8f9 100644 (file)
@@ -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