From: Ian Coleman Date: Tue, 23 Aug 2016 08:16:27 +0000 (+1000) Subject: Test changing tabs X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=cf7258fd4f822891f8906844177d2839f63e861b;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git Test changing tabs --- 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