Skip to content

Commit

Permalink
Add test for nubits network
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Coleman committed Oct 10, 2017
1 parent f2a1a8e commit 0cca6e8
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -1052,6 +1052,36 @@ page.open(url, function(status) {
});
},

// Network can be set to nubits
function() {
page.open(url, function(status) {
// set the phrase and coin
var expected = "BLxkabXuZSJSdesLD7KxZdqovd4YwyBTU6";
page.evaluate(function() {
$(".phrase").val("abandon abandon ability");
$(".phrase").trigger("input");
$(".network option[selected]").removeAttr("selected");
$(".network option").filter(function() {
return $(this).html() == "USNBT - NuBits";
}).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("NuBits address is incorrect");
console.log("Expected: " + expected);
console.log("Actual: " + actual);
fail();
}
next();
});
});
},

// BIP39 seed is set from phrase
function() {
page.open(url, function(status) {
Expand Down

0 comments on commit 0cca6e8

Please sign in to comment.