Skip to content

Commit

Permalink
test(ore): remove ORE from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
envin3 committed Jan 8, 2024
1 parent 24bba5d commit c31b9bd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/utils/__tests__/account-validator.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'}
`(
Expand Down
2 changes: 0 additions & 2 deletions src/utils/__tests__/explorer.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit c31b9bd

Please sign in to comment.