aboutsummaryrefslogtreecommitdiff
path: root/tests/spec
diff options
context:
space:
mode:
authorBeachM <11566409+BeachM@users.noreply.github.com>2018-08-10 21:07:36 -0700
committerBeachM <11566409+BeachM@users.noreply.github.com>2018-08-10 21:07:36 -0700
commitae51db39a33c17abaddad05e2453d11aabb3a461 (patch)
tree045620006fe699e2b01b674c7abcf93c3d23bec0 /tests/spec
parente47cd1970f7f40ede6a97fb284df1701a3f252e5 (diff)
downloadBIP39-ae51db39a33c17abaddad05e2453d11aabb3a461.tar.gz
BIP39-ae51db39a33c17abaddad05e2453d11aabb3a461.tar.zst
BIP39-ae51db39a33c17abaddad05e2453d11aabb3a461.zip
add stash parameters
Diffstat (limited to 'tests/spec')
-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 6208bfc..e0eea6b 100644
--- a/tests/spec/tests.js
+++ b/tests/spec/tests.js
@@ -296,7 +296,7 @@ describe('BIP39 Tool Tests', function() {
296 296
297 beforeEach(function(done) { 297 beforeEach(function(done) {
298 driver = newDriver(); 298 driver = newDriver();
299 driver.get(url).then(done); 299 driver.get(url).then(done);
300 }); 300 });
301 301
302 // Close the website after each test is run (so that it is opened fresh each time) 302 // Close the website after each test is run (so that it is opened fresh each time)
@@ -1089,6 +1089,20 @@ it('Allows selection of Solarcoin', function(done) {
1089 }; 1089 };
1090 testNetwork(done, params); 1090 testNetwork(done, params);
1091}); 1091});
1092it('Allows selection of stash', function(done) {
1093 var params = {
1094 selectText: "STASH - Stash",
1095 firstAddress: "XxwAsWB7REDKmAvHA85SbEZQQtpxeUDxS3",
1096 };
1097 testNetwork(done, params);
1098});
1099it('Allows selection of stash testnet', function(done) {
1100 var params = {
1101 selectText: "STASH - Stash Testnet",
1102 firstAddress: "YdbhtMuGsPSkE6bPdNTHoFSszQKmK4S5LT",
1103 };
1104 testNetwork(done, params);
1105});
1092it('Allows selection of Stratis', function(done) { 1106it('Allows selection of Stratis', function(done) {
1093 var params = { 1107 var params = {
1094 selectText: "STRAT - Stratis", 1108 selectText: "STRAT - Stratis",