aboutsummaryrefslogtreecommitdiff
path: root/tests/spec/tests.js
diff options
context:
space:
mode:
authoriancoleman <1281387+iancoleman@users.noreply.github.com>2018-11-21 21:46:06 +1100
committerGitHub <noreply@github.com>2018-11-21 21:46:06 +1100
commit20d077e3afb0f34f437f033aaf016df0076b2bec (patch)
treec47c6117f0161e74bf813b2574664dcebd9c0b37 /tests/spec/tests.js
parent3e4551b0822de0ed41f5d6a31722450864d9ad2c (diff)
parent6f4358175204c2288953fa1178ee751c5e69cd1c (diff)
downloadBIP39-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/spec/tests.js')
-rw-r--r--tests/spec/tests.js14
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});
1358it('Allows selection of Blocknode', function(done) {
1359 var params = {
1360 selectText: "BND - Blocknode",
1361 firstAddress: "BG8xZSAur2jYLG9VXt8dYfkKxxeR7w9bSe",
1362 };
1363 testNetwork(done, params);
1364});
1365it('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
1360it('Sets the bip39 seed from the prhase', function(done) { 1374it('Sets the bip39 seed from the prhase', function(done) {