From c31b9bdd38ea41d9b072a7efb6e2b61cc0178768 Mon Sep 17 00:00:00 2001 From: eenvin Date: Mon, 8 Jan 2024 19:51:05 +0100 Subject: [PATCH] test(ore): remove ORE from tests --- src/utils/__tests__/account-validator.test.js | 1 - src/utils/__tests__/explorer.test.js | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/utils/__tests__/account-validator.test.js b/src/utils/__tests__/account-validator.test.js index 218e49aa..345788d9 100644 --- a/src/utils/__tests__/account-validator.test.js +++ b/src/utils/__tests__/account-validator.test.js @@ -33,7 +33,6 @@ describe('isValidAccountByBlockchain', () => { ${`account`} | ${'ULTRA'} | ${'0x02f9337d'} | ${'account'} ${`account`} | ${'ALGORAND'} | ${'0x03c38e67'} | ${'account'} ${`account`} | ${'FTM'} | ${'0x0022af98'} | ${'0xaccount'} - ${`account`} | ${'ORE'} | ${'0x02e7261c'} | ${'account'} ${`account`} | ${'BTC'} | ${'0x01ec97de'} | ${'account'} ${`account`} | ${'LTC'} | ${'0x01840435'} | ${'account'} `( diff --git a/src/utils/__tests__/explorer.test.js b/src/utils/__tests__/explorer.test.js index 85d7487c..9702b7b5 100644 --- a/src/utils/__tests__/explorer.test.js +++ b/src/utils/__tests__/explorer.test.js @@ -21,7 +21,6 @@ describe('getCorrespondingTxExplorerLinkByBlockchain', () => { ['LUXOCHAIN', 'https://explorer.luxochain.io/tx/txhash'], ['ALGORAND', 'https://algoexplorer.io/tx/group/txhash'], ['FTM', 'https://ftmscan.com/tx/txhash'], - ['ORE', 'https://explorer.ore.network/tx/txhash'], ])('Should get the correct %s explorer link for the transaction', (blockchain, expected) => { const txHash = 'txhash' const ret = getCorrespondingTxExplorerLinkByBlockchain(blockchain, txHash) @@ -48,7 +47,6 @@ describe('getCorrespondingTokenExplorerLinkByBlockchain', () => { ['LUXOCHAIN', 'https://explorer.luxochain.io/token/tokenaddress'], ['ALGORAND', 'https://algoexplorer.io/asset/tokenaddress'], ['FTM', 'https://ftmscan.com/token/tokenaddress'], - ['ORE', 'https://explorer.ore.network/account/tokenaddress'], ])('Should get the correct %s token link for the transaction', (blockchain, expected) => { const tokenAddress = 'tokenaddress' const ret = getCorrespondingTokenExplorerLinkByBlockchain(blockchain, tokenAddress)