]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/BIP39.git/commitdiff
Add test for nubits network
authorIan Coleman <coleman.ian@gmail.com>
Tue, 10 Oct 2017 01:04:27 +0000 (12:04 +1100)
committerIan Coleman <coleman.ian@gmail.com>
Tue, 10 Oct 2017 01:04:27 +0000 (12:04 +1100)
tests.js

index 850e58fcb7392c50d95eacb1239d12bef87d11d4..8ac56468c1fc6a779c38518b498802547adaa491 100644 (file)
--- a/tests.js
+++ b/tests.js
@@ -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) {