diff options
author | iancoleman <1281387+iancoleman@users.noreply.github.com> | 2021-02-11 12:55:36 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 12:55:36 +1100 |
commit | 8835afe8a2a01bb189a8712c0797ea60566f553a (patch) | |
tree | 60a337d4347bff529aeac0bc79c952c243176c52 /tests/spec | |
parent | 71573cb3800ff7708ae19dd22aecf15660a41cc4 (diff) | |
parent | 6d2e202083c4166aa4be8557789a8a461df6bd5c (diff) | |
download | BIP39-8835afe8a2a01bb189a8712c0797ea60566f553a.tar.gz BIP39-8835afe8a2a01bb189a8712c0797ea60566f553a.tar.zst BIP39-8835afe8a2a01bb189a8712c0797ea60566f553a.zip |
Merge pull request #462 from zoobc/master
Add ZooBC coin support
Diffstat (limited to 'tests/spec')
-rw-r--r-- | tests/spec/tests.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/spec/tests.js b/tests/spec/tests.js index 0332f96..ca5b1bb 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js | |||
@@ -2328,6 +2328,17 @@ it('Allows selection of TRX on Tron', function(done) { | |||
2328 | testNetwork(done, params); | 2328 | testNetwork(done, params); |
2329 | }); | 2329 | }); |
2330 | 2330 | ||
2331 | it('Allows selection of ZooBlockchain', function(done) { | ||
2332 | var params = { | ||
2333 | selectText: "ZBC - ZooBlockchain", | ||
2334 | phrase: "shy invest oxygen real lunar moral merge corn program air affair amazing dove imitate combine solve library fresh case alcohol pole question act thing", | ||
2335 | firstAddress: "ZBC_MGEZVH3U_SXPCBHTU_KSWDPQ4X_K6MSI3VR_CQAYMTLC_RXUMM3DJ_LFABCAXA", | ||
2336 | firstPubKey: "61899a9f7495de209e7454ac37c3975799246eb11401864d628de8c66c695940", | ||
2337 | firstPrivKey: "adb11e79068fa7366ec4f5963ad57115d666b1ad2b369b92d962563adf7dd48b", | ||
2338 | }; | ||
2339 | testNetwork(done, params); | ||
2340 | }); | ||
2341 | |||
2331 | // BIP39 seed is set from phrase | 2342 | // BIP39 seed is set from phrase |
2332 | it('Sets the bip39 seed from the prhase', function(done) { | 2343 | it('Sets the bip39 seed from the prhase', function(done) { |
2333 | driver.findElement(By.css('.phrase')) | 2344 | driver.findElement(By.css('.phrase')) |