Skip to content

Commit

Permalink
fix(suite): test
Browse files Browse the repository at this point in the history
  • Loading branch information
enjojoy committed Jan 8, 2025
1 parent 9230c39 commit 9a1c653
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ describe('filter receive accounts', () => {

it('returns all accounts when debug mode is on', () => {
const filteredAccounts = [
getWalletAccount({ symbol: 'eth', accountType: 'legacy' }),
getWalletAccount({ symbol: 'eth', accountType: 'normal' }),
getWalletAccount({ symbol: 'eth', accountType: 'ledger' }),
getWalletAccount({ symbol: 'eth', accountType: 'legacy' }),
];
expect(runFilterReceiveAccouns({})).toEqual(filteredAccounts);
});
Expand All @@ -99,10 +99,10 @@ describe('filter receive accounts', () => {

it('excludes coinjoin accounts for BTC network (also tests isAnotherNetwork and isCoinjoinAccount methods)', () => {
const filteredAccounts = [
getWalletAccount({ symbol: 'btc', accountType: 'taproot' }),
getWalletAccount({ symbol: 'btc', accountType: 'ledger' }),
getWalletAccount({ symbol: 'btc', accountType: 'legacy' }),
getWalletAccount({ symbol: 'btc', accountType: 'segwit' }),
getWalletAccount({ symbol: 'btc', accountType: 'ledger' }),
getWalletAccount({ symbol: 'btc', accountType: 'taproot' }),
];

expect(runFilterReceiveAccouns({ symbol: 'btc' })).toEqual(filteredAccounts);
Expand Down

0 comments on commit 9a1c653

Please sign in to comment.