aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authoriancoleman <1281387+iancoleman@users.noreply.github.com>2020-10-19 09:12:43 +1100
committerGitHub <noreply@github.com>2020-10-19 09:12:43 +1100
commit4669c88c672b0ec2ac636cae96a3fe2db94e2791 (patch)
tree109e4173462e7f9f9d7afc4cb1fbaa803bcd35eb /tests
parent9e865b8e757b6ee643027536da9a18b3c0469aa7 (diff)
parent47dbf58b6d499230eb07f7ea126af6b367e9039b (diff)
downloadBIP39-4669c88c672b0ec2ac636cae96a3fe2db94e2791.tar.gz
BIP39-4669c88c672b0ec2ac636cae96a3fe2db94e2791.tar.zst
BIP39-4669c88c672b0ec2ac636cae96a3fe2db94e2791.zip
Merge pull request #441 from bytefly/master
Add TRX coin support
Diffstat (limited to 'tests')
-rw-r--r--tests/spec/tests.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/spec/tests.js b/tests/spec/tests.js
index 58318db..8b3b07b 100644
--- a/tests/spec/tests.js
+++ b/tests/spec/tests.js
@@ -2286,6 +2286,17 @@ it('Allows selection of Binance Smart Chain', function(done) {
2286 testNetwork(done, params); 2286 testNetwork(done, params);
2287}); 2287});
2288 2288
2289it('Allows selection of TRX on Tron', function(done) {
2290 var params = {
2291 selectText: "TRX - Tron",
2292 phrase: "abandon abandon ability",
2293 firstAddress: "TA891Fu7vVz595BGQpNX2MCzr7yBcxuoC7",
2294 firstPubKey: "0337bbb060e6166066f7f9e59e52f67bc23a6c9d0cbc815b82b6d89112444842e7",
2295 firstPrivKey: "3a8fbd0379a815764979de86a3fcda759cb62d49e784e7b2a9a03206c90cfae2",
2296 };
2297 testNetwork(done, params);
2298});
2299
2289// BIP39 seed is set from phrase 2300// BIP39 seed is set from phrase
2290it('Sets the bip39 seed from the prhase', function(done) { 2301it('Sets the bip39 seed from the prhase', function(done) {
2291 driver.findElement(By.css('.phrase')) 2302 driver.findElement(By.css('.phrase'))