diff options
author | iancoleman <1281387+iancoleman@users.noreply.github.com> | 2018-11-21 21:46:06 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-21 21:46:06 +1100 |
commit | 20d077e3afb0f34f437f033aaf016df0076b2bec (patch) | |
tree | c47c6117f0161e74bf813b2574664dcebd9c0b37 /tests | |
parent | 3e4551b0822de0ed41f5d6a31722450864d9ad2c (diff) | |
parent | 6f4358175204c2288953fa1178ee751c5e69cd1c (diff) | |
download | BIP39-20d077e3afb0f34f437f033aaf016df0076b2bec.tar.gz BIP39-20d077e3afb0f34f437f033aaf016df0076b2bec.tar.zst BIP39-20d077e3afb0f34f437f033aaf016df0076b2bec.zip |
Merge pull request #273 from CCob/master
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 56c259c..cd3f381 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js | |||
@@ -1355,6 +1355,20 @@ it('Allows selection of Phore', function(done) { | |||
1355 | }; | 1355 | }; |
1356 | testNetwork(done, params); | 1356 | testNetwork(done, params); |
1357 | }); | 1357 | }); |
1358 | it('Allows selection of Blocknode', function(done) { | ||
1359 | var params = { | ||
1360 | selectText: "BND - Blocknode", | ||
1361 | firstAddress: "BG8xZSAur2jYLG9VXt8dYfkKxxeR7w9bSe", | ||
1362 | }; | ||
1363 | testNetwork(done, params); | ||
1364 | }); | ||
1365 | it('Allows selection of Blocknode Testnet', function(done) { | ||
1366 | var params = { | ||
1367 | selectText: "tBND - Blocknode Testnet", | ||
1368 | firstAddress: "bSptsFyDktFSKpWveRywJsDoJA2TC6qfHv", | ||
1369 | }; | ||
1370 | testNetwork(done, params); | ||
1371 | }); | ||
1358 | 1372 | ||
1359 | // BIP39 seed is set from phrase | 1373 | // BIP39 seed is set from phrase |
1360 | it('Sets the bip39 seed from the prhase', function(done) { | 1374 | it('Sets the bip39 seed from the prhase', function(done) { |