]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/BIP39.git/commitdiff
Add test for fujicoin
authorIan Coleman <coleman.ian@gmail.com>
Tue, 3 Oct 2017 03:40:56 +0000 (14:40 +1100)
committerIan Coleman <coleman.ian@gmail.com>
Tue, 3 Oct 2017 03:40:56 +0000 (14:40 +1100)
tests.js

index 34eff9630659d25f8f375fa93cb108f858fba82e..850e58fcb7392c50d95eacb1239d12bef87d11d4 100644 (file)
--- a/tests.js
+++ b/tests.js
@@ -1022,6 +1022,36 @@ page.open(url, function(status) {
 });
 },
 
+// Network can be set to fujicoin
+function() {
+page.open(url, function(status) {
+    // set the phrase and coin
+    var expected = "FgiaLpG7C99DyR4WnPxXedRVHXSfKzUDhF";
+    page.evaluate(function() {
+        $(".phrase").val("abandon abandon ability");
+        $(".phrase").trigger("input");
+        $(".network option[selected]").removeAttr("selected");
+        $(".network option").filter(function() {
+            return $(this).html() == "FJC - Fujicoin";
+        }).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("Fujicoin 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) {