Fixed missing .electrum directory bug

This commit is contained in:
Sun Knudsen 2021-05-21 14:02:00 -04:00
parent 1a0cb0836f
commit 3892b1c10b
No known key found for this signature in database
GPG key ID: 1FA767862BBD1305
7 changed files with 52 additions and 22 deletions

View file

@ -33,6 +33,9 @@ expect {
-re {([a-z]+ ?){24}} {
test_ok true
}
eof {
test_failed
}
}
test_label "Should validate valid BIP39 mnemonic"
@ -69,6 +72,9 @@ expect {
-re {Please type passphrase and press enter} {
test_ok true
}
eof {
test_failed
}
}
test_label "Should fail to validate invalid BIP39 mnemonic"
@ -105,4 +111,7 @@ expect {
-re {Invalid BIP39 mnemonic} {
test_ok true
}
eof {
test_failed
}
}