aboutsummaryrefslogtreecommitdiff
path: root/tests/spec/tests.js
diff options
context:
space:
mode:
authoriancoleman <1281387+iancoleman@users.noreply.github.com>2018-12-05 08:36:51 +1100
committerGitHub <noreply@github.com>2018-12-05 08:36:51 +1100
commitacf4c9b588c6abcc275b4e46df54248a2c913366 (patch)
tree3f835b97ec21398a32c99f81d8b4ad27cd23e82d /tests/spec/tests.js
parentd645b9826147ce85100fa24bf5fdccd059e4ba76 (diff)
parent10cf809e7cb3f61927d6d1313072a0323d62d6db (diff)
downloadBIP39-acf4c9b588c6abcc275b4e46df54248a2c913366.tar.gz
BIP39-acf4c9b588c6abcc275b4e46df54248a2c913366.tar.zst
BIP39-acf4c9b588c6abcc275b4e46df54248a2c913366.zip
Merge branch 'master' into master
Diffstat (limited to 'tests/spec/tests.js')
-rw-r--r--tests/spec/tests.js16
1 files changed, 15 insertions, 1 deletions
diff --git a/tests/spec/tests.js b/tests/spec/tests.js
index 58662fd..0bb56f8 100644
--- a/tests/spec/tests.js
+++ b/tests/spec/tests.js
@@ -1362,7 +1362,21 @@ it('Allows selection of Safecoin', function(done) {
1362 }; 1362 };
1363 testNetwork(done, params); 1363 testNetwork(done, params);
1364 }); 1364 });
1365 1365it('Allows selection of Blocknode', function(done) {
1366 var params = {
1367 selectText: "BND - Blocknode",
1368 firstAddress: "BG8xZSAur2jYLG9VXt8dYfkKxxeR7w9bSe",
1369 };
1370 testNetwork(done, params);
1371});
1372it('Allows selection of Blocknode Testnet', function(done) {
1373 var params = {
1374 selectText: "tBND - Blocknode Testnet",
1375 firstAddress: "bSptsFyDktFSKpWveRywJsDoJA2TC6qfHv",
1376 };
1377 testNetwork(done, params);
1378});
1379
1366// BIP39 seed is set from phrase 1380// BIP39 seed is set from phrase
1367it('Sets the bip39 seed from the prhase', function(done) { 1381it('Sets the bip39 seed from the prhase', function(done) {
1368 driver.findElement(By.css('.phrase')) 1382 driver.findElement(By.css('.phrase'))