diff options
author | iancoleman <1281387+iancoleman@users.noreply.github.com> | 2020-05-11 09:05:32 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-11 09:05:32 +1000 |
commit | bf528f65f411daec8735d25ca30e01fc1dd33e6e (patch) | |
tree | 5cce946484a90d8ab7b4e9703be165391548bd68 /tests/spec | |
parent | a823e5266c95f54dbf7b672f3d0ba2bac779f85e (diff) | |
parent | 5699633538863463319542926dc46cf3cbf9d1a3 (diff) | |
download | BIP39-bf528f65f411daec8735d25ca30e01fc1dd33e6e.tar.gz BIP39-bf528f65f411daec8735d25ca30e01fc1dd33e6e.tar.zst BIP39-bf528f65f411daec8735d25ca30e01fc1dd33e6e.zip |
Merge branch 'master' into feat/rsk-network
Diffstat (limited to 'tests/spec')
-rw-r--r-- | tests/spec/tests.js | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/spec/tests.js b/tests/spec/tests.js index 31fa043..dc6e4b5 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js | |||
@@ -1205,6 +1205,15 @@ it('Allows selection of Feathercoin', function(done) { | |||
1205 | }; | 1205 | }; |
1206 | testNetwork(done, params); | 1206 | testNetwork(done, params); |
1207 | }); | 1207 | }); |
1208 | it('Allows selection of FIO', function(done) { | ||
1209 | var params = { | ||
1210 | selectText: "FIO - Foundation for Interwallet Operability", | ||
1211 | phrase: "valley alien library bread worry brother bundle hammer loyal barely dune brave", | ||
1212 | firstPubKey: "FIO5kJKNHwctcfUM5XZyiWSqSTM5HTzznJP9F3ZdbhaQAHEVq575o", | ||
1213 | firstPrivKey: "5Kbb37EAqQgZ9vWUHoPiC2uXYhyGSFNbL6oiDp24Ea1ADxV1qnu", | ||
1214 | }; | ||
1215 | testNetwork(done, params); | ||
1216 | }); | ||
1208 | it('Allows selection of Firstcoin', function(done) { | 1217 | it('Allows selection of Firstcoin', function(done) { |
1209 | var params = { | 1218 | var params = { |
1210 | selectText: "FRST - Firstcoin", | 1219 | selectText: "FRST - Firstcoin", |
@@ -1675,6 +1684,26 @@ it('Allows selection of Stratis Test', function(done) { | |||
1675 | }; | 1684 | }; |
1676 | testNetwork(done, params); | 1685 | testNetwork(done, params); |
1677 | }); | 1686 | }); |
1687 | it('Allows selection of Sugarchain', function(done) { | ||
1688 | var params = { | ||
1689 | selectText: "SUGAR - Sugarchain", | ||
1690 | phrase: "abandon abandon ability", | ||
1691 | firstAddress: "SYnd31fYr39VgKju87Vz1sYBmEeHg5cudk", | ||
1692 | firstPubKey: "035bc9fa22eff2246ec07bb09c9e32f5f9fee517b4f49a8f117508f8fb41905b25", | ||
1693 | firstPrivKey: "L2G3axGdZv5EV8osAsBPMese74i4dTHaGvxDh7DsRF5Ky6hKkPDY", | ||
1694 | }; | ||
1695 | testNetwork(done, params); | ||
1696 | }); | ||
1697 | it('Allows selection of Sugarchain Testnet', function(done) { | ||
1698 | var params = { | ||
1699 | selectText: "TUGAR - Sugarchain Testnet", | ||
1700 | phrase: "abandon abandon ability", | ||
1701 | firstAddress: "TkoRzLZQyaY88dAACNVwUFMYekR7pv6CbY", | ||
1702 | firstPubKey: "035bc9fa22eff2246ec07bb09c9e32f5f9fee517b4f49a8f117508f8fb41905b25", | ||
1703 | firstPrivKey: "cSd33sGUzymVeaH8ZGzWiyNhjJ1UHuPGLy6goXgNvMjLDqioARWW", | ||
1704 | }; | ||
1705 | testNetwork(done, params); | ||
1706 | }); | ||
1678 | it('Allows selection of Syscoin', function(done) { | 1707 | it('Allows selection of Syscoin', function(done) { |
1679 | var params = { | 1708 | var params = { |
1680 | selectText: "SYS - Syscoin", | 1709 | selectText: "SYS - Syscoin", |
@@ -2216,6 +2245,16 @@ it('Allows selection of tRBTC - RSK Testnet', function(done) { | |||
2216 | }; | 2245 | }; |
2217 | testNetwork(done, params); | 2246 | testNetwork(done, params); |
2218 | }); | 2247 | }); |
2248 | it('Allows selection of Argoneum', function(done) { | ||
2249 | var params = { | ||
2250 | selectText: "AGM - Argoneum", | ||
2251 | phrase: "abandon abandon ability", | ||
2252 | firstAddress: "MWgLPvJkaJwH6hrXFs1MimAC4FwC1kYRhe", | ||
2253 | firstPubKey: "0348e5252045fee1d3b1e5bce25dbc16284d5b6c3bfff9c305d4ffa6078c16f3f8", | ||
2254 | firstPrivKey: "VJXpuMEFnK8USLyo5tgF7M4cBXU44U8MUor1KRTQ6t9DVno9AAgg", | ||
2255 | }; | ||
2256 | testNetwork(done, params); | ||
2257 | }); | ||
2219 | 2258 | ||
2220 | // BIP39 seed is set from phrase | 2259 | // BIP39 seed is set from phrase |
2221 | it('Sets the bip39 seed from the prhase', function(done) { | 2260 | it('Sets the bip39 seed from the prhase', function(done) { |