diff options
author | Ian Coleman <ian@iancoleman.io> | 2020-05-11 09:43:35 +1000 |
---|---|---|
committer | Ian Coleman <ian@iancoleman.io> | 2020-05-11 09:43:35 +1000 |
commit | 26767a2ce3f2142455098f030259d2ccf45ecbac (patch) | |
tree | 435b646e39835a8fc645694f219287fe77942168 /tests | |
parent | a748c4b5c661a949372de4b6f7d364218d9dc2b5 (diff) | |
download | BIP39-26767a2ce3f2142455098f030259d2ccf45ecbac.tar.gz BIP39-26767a2ce3f2142455098f030259d2ccf45ecbac.tar.zst BIP39-26767a2ce3f2142455098f030259d2ccf45ecbac.zip |
Add CranePay test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/spec/tests.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/spec/tests.js b/tests/spec/tests.js index 36cd7be..0e7edb9 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js | |||
@@ -2255,6 +2255,16 @@ it('Allows selection of Argoneum', function(done) { | |||
2255 | }; | 2255 | }; |
2256 | testNetwork(done, params); | 2256 | testNetwork(done, params); |
2257 | }); | 2257 | }); |
2258 | it('Allows selection of CranePay', function(done) { | ||
2259 | var params = { | ||
2260 | selectText: "CRP - CranePay", | ||
2261 | phrase: "abandon abandon ability", | ||
2262 | firstAddress: "CcUHPqgmef1BmgWFa9g3YNc8scgVXVh8ip", | ||
2263 | firstPubKey: "0392af9ea9dc78170c6f68c50bac926f960e50769295f539ac6382a3af2b928740", | ||
2264 | firstPrivKey: "KHTCAvKHKg1WdLoDSg3VjjyZK5Wk1ihzJENpp2YMb1RmAxrCZrXX", | ||
2265 | }; | ||
2266 | testNetwork(done, params); | ||
2267 | }); | ||
2258 | 2268 | ||
2259 | // BIP39 seed is set from phrase | 2269 | // BIP39 seed is set from phrase |
2260 | it('Sets the bip39 seed from the prhase', function(done) { | 2270 | it('Sets the bip39 seed from the prhase', function(done) { |