From cf7258fd4f822891f8906844177d2839f63e861b Mon Sep 17 00:00:00 2001 From: Ian Coleman Date: Tue, 23 Aug 2016 18:16:27 +1000 Subject: [PATCH] Test changing tabs --- tests.js | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/tests.js b/tests.js index 812ed14..7f133cd 100644 --- a/tests.js +++ b/tests.js @@ -493,11 +493,40 @@ page.open(url, function(status) { }); }, -// TODO finish these tests - // Tabs show correct addresses when changed +function() { +page.open(url, function(status) { + // set the phrase + var expected = "17uQ7s2izWPwBmEVFikTmZUjbBKWYdJchz"; + page.evaluate(function() { + $(".phrase").val("abandon abandon ability"); + $(".phrase").trigger("input"); + }); + // change tabs + waitForGenerate(function() { + page.evaluate(function() { + $("#bip32-tab a").click(); + }); + // check the address is generated correctly + waitForGenerate(function() { + var actual = page.evaluate(function() { + return $(".address:first").text(); + }); + if (actual != expected) { + console.log("Clicking tab generates incorrect address"); + console.log("Expected: " + expected); + console.log("Actual: " + actual); + fail(); + } + next(); + }); + }); +}); +}, // BIP44 derivation path is shown +// TODO finish these tests + // BIP44 extended private key is shown // BIP44 extended public key is shown // BIP44 purpose field changes address list -- 2.41.0