diff options
author | Unknown <ceri.coburn@gmail.com> | 2018-11-03 09:21:57 +0000 |
---|---|---|
committer | Unknown <ceri.coburn@gmail.com> | 2018-11-03 09:22:08 +0000 |
commit | 6f4358175204c2288953fa1178ee751c5e69cd1c (patch) | |
tree | 86588d6398e491f8c2349642c23fa92359bc785d /tests | |
parent | ce349ac99f2083eec70f9546354aaa2eae4689ed (diff) | |
download | BIP39-6f4358175204c2288953fa1178ee751c5e69cd1c.tar.gz BIP39-6f4358175204c2288953fa1178ee751c5e69cd1c.tar.zst BIP39-6f4358175204c2288953fa1178ee751c5e69cd1c.zip |
Added support for Blocknode
Diffstat (limited to 'tests')
-rw-r--r-- | tests/spec/tests.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/spec/tests.js b/tests/spec/tests.js index b1308fb..6f9d693 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js | |||
@@ -1348,6 +1348,20 @@ it('Allows selection of Phore', function(done) { | |||
1348 | }; | 1348 | }; |
1349 | testNetwork(done, params); | 1349 | testNetwork(done, params); |
1350 | }); | 1350 | }); |
1351 | it('Allows selection of Blocknode', function(done) { | ||
1352 | var params = { | ||
1353 | selectText: "BND - Blocknode", | ||
1354 | firstAddress: "BG8xZSAur2jYLG9VXt8dYfkKxxeR7w9bSe", | ||
1355 | }; | ||
1356 | testNetwork(done, params); | ||
1357 | }); | ||
1358 | it('Allows selection of Blocknode Testnet', function(done) { | ||
1359 | var params = { | ||
1360 | selectText: "tBND - Blocknode Testnet", | ||
1361 | firstAddress: "bSptsFyDktFSKpWveRywJsDoJA2TC6qfHv", | ||
1362 | }; | ||
1363 | testNetwork(done, params); | ||
1364 | }); | ||
1351 | 1365 | ||
1352 | // BIP39 seed is set from phrase | 1366 | // BIP39 seed is set from phrase |
1353 | it('Sets the bip39 seed from the prhase', function(done) { | 1367 | it('Sets the bip39 seed from the prhase', function(done) { |