From 4fe2b31ef5419bd7bf06adae3256b8204f2d29b5 Mon Sep 17 00:00:00 2001 From: Martin Homola Date: Tue, 1 Oct 2024 15:48:00 +0200 Subject: [PATCH] fixup! chore(wallet-config): order networks --- .../__tests__/coinmarketUtils.test.ts | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/packages/suite/src/utils/wallet/coinmarket/__tests__/coinmarketUtils.test.ts b/packages/suite/src/utils/wallet/coinmarket/__tests__/coinmarketUtils.test.ts index 39e017498a8f..2771e02d5abd 100644 --- a/packages/suite/src/utils/wallet/coinmarket/__tests__/coinmarketUtils.test.ts +++ b/packages/suite/src/utils/wallet/coinmarket/__tests__/coinmarketUtils.test.ts @@ -150,9 +150,9 @@ describe('coinmarket utils', () => { expect(sortedAccounts).toStrictEqual([ FIXTURE_ACCOUNTS[0], - FIXTURE_ACCOUNTS[1], FIXTURE_ACCOUNTS[2], FIXTURE_ACCOUNTS[5], + FIXTURE_ACCOUNTS[1], ]); }); @@ -192,20 +192,6 @@ describe('coinmarket utils', () => { }, ], }, - { - label, - options: [ - { - accountType: 'normal', - balance: '0.101213', - cryptoName: 'Litecoin', - descriptor: 'descriptor2', - label: 'LTC', - value: 'litecoin', - decimals: 8, - }, - ], - }, { label, options: [ @@ -244,6 +230,20 @@ describe('coinmarket utils', () => { }, ], }, + { + label, + options: [ + { + accountType: 'normal', + balance: '0.101213', + cryptoName: 'Litecoin', + descriptor: 'descriptor2', + label: 'LTC', + value: 'litecoin', + decimals: 8, + }, + ], + }, ]); });