mirror of
https://github.com/OneKeyHQ/bip39.git
synced 2026-04-16 23:42:16 +00:00
Test incorrect word shows suggested replacement
This commit is contained in:
21
tests.js
21
tests.js
@@ -1456,6 +1456,27 @@ page.open(url, function(status) {
|
||||
},
|
||||
|
||||
// Incorrect word shows suggested replacement
|
||||
function() {
|
||||
page.open(url, function(status) {
|
||||
// set the root key
|
||||
page.evaluate(function() {
|
||||
$(".phrase").val("abandon abandon abiliti").trigger("input");
|
||||
});
|
||||
// check there is a suggestion shown
|
||||
waitForFeedback(function() {
|
||||
var feedback = page.evaluate(function() {
|
||||
return $(".feedback").text();
|
||||
});
|
||||
if (feedback.indexOf("did you mean ability?") < 0) {
|
||||
console.log("Incorrect word does not show suggested replacement");
|
||||
console.log("Error: " + error);
|
||||
fail();
|
||||
}
|
||||
next();
|
||||
});
|
||||
});
|
||||
},
|
||||
|
||||
// Incorrect BIP32 root key shows error
|
||||
// Derivation path not starting with m shows error
|
||||
// Derivation path containing invalid characters shows useful error
|
||||
|
||||
Reference in New Issue
Block a user