diff options
author | iancoleman <1281387+iancoleman@users.noreply.github.com> | 2019-09-12 10:13:37 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-12 10:13:37 +1000 |
commit | ea96c345cceac845c62ecfd7b4eadf3b11d2b7f5 (patch) | |
tree | 98f1cc7405aca4b91b9e5f290b7356d13e0960ef /tests | |
parent | e440d504fbc80fe11366e24dccf945c43aaf52df (diff) | |
parent | 318ec4dc9f37c2ea4fc8de2fd487602c3cd05cb9 (diff) | |
download | BIP39-ea96c345cceac845c62ecfd7b4eadf3b11d2b7f5.tar.gz BIP39-ea96c345cceac845c62ecfd7b4eadf3b11d2b7f5.tar.zst BIP39-ea96c345cceac845c62ecfd7b4eadf3b11d2b7f5.zip |
Merge pull request #356 from skironDotNet/HUSH3
Added HUSH3 encoding and kept old as Legacy for users to be able to
Diffstat (limited to 'tests')
-rw-r--r-- | tests/spec/tests.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/spec/tests.js b/tests/spec/tests.js index 6f9fd4f..c9c0e6e 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js | |||
@@ -1441,11 +1441,18 @@ it('Allows selection of Callisto', function(done) { | |||
1441 | }); | 1441 | }); |
1442 | it('Allows selection of HUSH', function(done) { | 1442 | it('Allows selection of HUSH', function(done) { |
1443 | var params = { | 1443 | var params = { |
1444 | selectText: "HUSH - Hush", | 1444 | selectText: "HUSH - Hush (Legacy)", |
1445 | firstAddress: "t1g6rLXUnJaiJuu4q4zmJjoa9Gk4fwKpiuA", | 1445 | firstAddress: "t1g6rLXUnJaiJuu4q4zmJjoa9Gk4fwKpiuA", |
1446 | }; | 1446 | }; |
1447 | testNetwork(done, params); | 1447 | testNetwork(done, params); |
1448 | }); | 1448 | }); |
1449 | it('Allows selection of HUSH3', function(done) { | ||
1450 | var params = { | ||
1451 | selectText: "HUSH - Hush3", | ||
1452 | firstAddress: "RXWSQhwvw5jHPGP8bjwJhWoRnMLBnuPDKD", | ||
1453 | }; | ||
1454 | testNetwork(done, params); | ||
1455 | }); | ||
1449 | it('Allows selection of ExchangeCoin', function(done) { | 1456 | it('Allows selection of ExchangeCoin', function(done) { |
1450 | var params = { | 1457 | var params = { |
1451 | selectText: "EXCC - ExchangeCoin", | 1458 | selectText: "EXCC - ExchangeCoin", |