diff options
author | iancoleman <1281387+iancoleman@users.noreply.github.com> | 2019-06-11 09:37:53 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-11 09:37:53 +1000 |
commit | 7d68d5474e9354699b05637a8645a0b749e52c81 (patch) | |
tree | f8eb851f8ed190c7d4b8628d67253d0dff5be802 /tests | |
parent | 0ae59396f5407f269206c58392b2638ea37455a8 (diff) | |
parent | 21e2e6c95158c720ce816f1df3a758217a8c2034 (diff) | |
download | BIP39-7d68d5474e9354699b05637a8645a0b749e52c81.tar.gz BIP39-7d68d5474e9354699b05637a8645a0b749e52c81.tar.zst BIP39-7d68d5474e9354699b05637a8645a0b749e52c81.zip |
Merge branch 'master' into eosio-support
Diffstat (limited to 'tests')
-rw-r--r-- | tests/spec/tests.js | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/tests/spec/tests.js b/tests/spec/tests.js index 3d72abd..2685fa6 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js | |||
@@ -419,6 +419,13 @@ it('Allows selection of litecoin', function(done) { | |||
419 | }; | 419 | }; |
420 | testNetwork(done, params); | 420 | testNetwork(done, params); |
421 | }); | 421 | }); |
422 | it('Allows selection of litecoin testnet', function(done) { | ||
423 | var params = { | ||
424 | selectText: "LTCt - Litecoin Testnet", | ||
425 | firstAddress: "mucaU5iiDaJDb69BHLeDv8JFfGiyg2nJKi", | ||
426 | }; | ||
427 | testNetwork(done, params); | ||
428 | }); | ||
422 | it('Allows selection of ripple', function(done) { | 429 | it('Allows selection of ripple', function(done) { |
423 | var params = { | 430 | var params = { |
424 | selectText: "XRP - Ripple", | 431 | selectText: "XRP - Ripple", |
@@ -434,6 +441,13 @@ it('Allows selection of dogecoin', function(done) { | |||
434 | }; | 441 | }; |
435 | testNetwork(done, params); | 442 | testNetwork(done, params); |
436 | }); | 443 | }); |
444 | it('Allows selection of dogecoin testnet', function(done) { | ||
445 | var params = { | ||
446 | selectText: "DOGEt - Dogecoin testnet", | ||
447 | firstAddress: "niHnSJKHdwDyDxRMLBJrtNqpvHEsAFWe6B", | ||
448 | }; | ||
449 | testNetwork(done, params); | ||
450 | }); | ||
437 | it('Allows selection of denarius', function(done) { | 451 | it('Allows selection of denarius', function(done) { |
438 | var params = { | 452 | var params = { |
439 | selectText: "DNR - Denarius", | 453 | selectText: "DNR - Denarius", |
@@ -486,7 +500,7 @@ it('Allows selection of clam', function(done) { | |||
486 | it('Allows selection of crown', function(done) { | 500 | it('Allows selection of crown', function(done) { |
487 | var params = { | 501 | var params = { |
488 | selectText: "CRW - Crown (Legacy)", | 502 | selectText: "CRW - Crown (Legacy)", |
489 | firstAddress: "18pWSwSUAQdiwMHUfFZB1fM2xue9X1FqE5", | 503 | firstAddress: "18pWSwSUAQdiwMHUfFZB1fM2xue9X1FqE5", |
490 | }; | 504 | }; |
491 | testNetwork(done, params); | 505 | testNetwork(done, params); |
492 | }); | 506 | }); |
@@ -1480,6 +1494,13 @@ it('Allows selection of Ethersocial Network', function(done) { | |||
1480 | }; | 1494 | }; |
1481 | testNetwork(done, params); | 1495 | testNetwork(done, params); |
1482 | }); | 1496 | }); |
1497 | it('Allows selection of Monkey Project', function(done) { | ||
1498 | var params = { | ||
1499 | selectText: "MONK - Monkey Project", | ||
1500 | firstAddress: "MnLrcnnUzKnf7TzufjRe5DLZqQJz18oYyu", | ||
1501 | }; | ||
1502 | testNetwork(done, params); | ||
1503 | }); | ||
1483 | 1504 | ||
1484 | // BIP39 seed is set from phrase | 1505 | // BIP39 seed is set from phrase |
1485 | it('Sets the bip39 seed from the prhase', function(done) { | 1506 | it('Sets the bip39 seed from the prhase', function(done) { |