Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanjoshi914 committed Feb 16, 2024
1 parent b7528c2 commit 881ac3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const message: MessageAccountAdd = {
config: "123456config",
name: "purple",
nostrPrivateKey: "123456nostr",
isMnemonicBackupDone: false,
},
origin: { internal: true },
prompt: true,
Expand Down Expand Up @@ -59,6 +60,7 @@ describe("add account to account-list", () => {
config: "secret-config-string-42",
name: "purple",
nostrPrivateKey: "123456nostr",
isMnemonicBackupDone: false,
},
},
});
Expand Down Expand Up @@ -107,6 +109,7 @@ describe("add account to account-list", () => {
config: "secret-config-string-42",
name: "purple",
nostrPrivateKey: "123456nostr",
isMnemonicBackupDone: false,
},
"666": {
config: "xyz",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ describe("account info", () => {
hasImportedNostrKey: true,
bitcoinNetwork: "bitcoin",
useMnemonicForLnurlAuth: false,
isMnemonicBackupDone: false,
isMnemonicBackupDone: true,
};

expect(await getAccount(message)).toStrictEqual({
Expand Down

0 comments on commit 881ac3b

Please sign in to comment.