X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tests.js;fp=tests.js;h=c0f7df78377972a221f6707c322c254e69aef081;hb=fe8f2d140d9c9e260ebeab7135aa5197b27df406;hp=8ac56468c1fc6a779c38518b498802547adaa491;hpb=0cca6e893af22e7b6d4e3621a8a0bf3c68c00e41;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git diff --git a/tests.js b/tests.js index 8ac5646..c0f7df7 100644 --- a/tests.js +++ b/tests.js @@ -4404,6 +4404,37 @@ page.open(url, function(status) { }); }, +// Bitcoin Cash address can be set to use bitpay format +function() { +page.open(url, function(status) { + // set the phrase and coin and address format + var expected = "CZnpA9HPmvhuhLLPWJP8rNDpLUYXy1LXFk"; + page.evaluate(function() { + $(".use-bitpay-addresses").prop("checked", true); + $(".phrase").val("abandon abandon ability"); + $(".phrase").trigger("input"); + $(".network option[selected]").removeAttr("selected"); + $(".network option").filter(function() { + return $(this).html() == "BCH - Bitcoin Cash"; + }).prop("selected", true); + $(".network").trigger("change"); + }); + // check the address is generated correctly + waitForGenerate(function() { + var actual = page.evaluate(function() { + return $(".address:first").text(); + }); + if (actual != expected) { + console.log("Bitcoin Cash address is incorrect"); + console.log("Expected: " + expected); + console.log("Actual: " + actual); + fail(); + } + next(); + }); +}); +}, + // If you wish to add more tests, do so here... // Here is a blank test template