From 82e3938afe3e76000b58e6a49e204ffff10fbd5a Mon Sep 17 00:00:00 2001 From: yurykk Date: Thu, 27 Jun 2019 11:56:47 +0300 Subject: Adding TWINS coin support --- tests/spec/tests.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'tests') diff --git a/tests/spec/tests.js b/tests/spec/tests.js index 90cdc7a..c92689a 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js @@ -1242,6 +1242,20 @@ it('Allows selection of Toa', function(done) { }; testNetwork(done, params); }); +it('Allows selection of TWINS', function(done) { + var params = { + selectText: "TWINS - TWINS", + firstAddress: "WPpJnfLLubNmF7HLNxg8d8zH5haxn4wri8", + }; + testNetwork(done, params); +}); +it('Allows selection of TWINS testnet', function(done) { + var params = { + selectText: "TWINS - TWINS Testnet", + firstAddress: "XpnU1HHdNG5YxvG9Rez4wjmidchxqnZaNa", + }; + testNetwork(done, params); +}); it('Allows selection of Ultimatesecurecash', function(done) { var params = { selectText: "USC - Ultimatesecurecash", -- cgit v1.2.3 From 7d4e4cbe2677976e12e9b35a00f032eb038848e2 Mon Sep 17 00:00:00 2001 From: yurykk Date: Thu, 27 Jun 2019 12:15:11 +0300 Subject: Adding FIX coin support --- tests/spec/tests.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'tests') diff --git a/tests/spec/tests.js b/tests/spec/tests.js index c92689a..6e56ce0 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js @@ -640,6 +640,20 @@ it('Allows selection of maza', function(done) { }; testNetwork(done, params); }); +it('Allows selection of FIX', function(done) { + var params = { + selectText: "FIX - FIX", + firstAddress: "FS5MEU8fs5dUvsaSCSusV8RQtC8j2h3JEh", + }; + testNetwork(done, params); +}); +it('Allows selection of FIX testnet', function(done) { + var params = { + selectText: "FIX - FIX Testnet", + firstAddress: "XpnU1HHdNG5YxvG9Rez4wjmidchxqnZaNa", + }; + testNetwork(done, params); +}); it('Allows selection of fujicoin', function(done) { var params = { selectText: "FJC - Fujicoin", -- cgit v1.2.3