mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
fbbdaf04ed
* Swaps: Show a network name dynamically in a tooltip * Replace “Ethereum” with “$1”, change “Test” to “Testnet” * Replace 이더리움 with $1 * Translate network names, use ‘Ethereum’ by default if a translation is not available yet * Reorder messages to resolve ESLint issues * Add a snapshot test for the FeeCard component, increase Jest threshold * Enable snapshot testing into external .snap files in ESLint * Add the “networkNameEthereum” key in ko/messages.json, remove default “Ethereum” value * Throw an error if chain ID is not supported by the Swaps feature * Use string literals when calling the `t` fn, * Watch Jest tests silently (no React warnings in terminal, only errors) * Add @testing-library/jest-dom, import it before running Jest tests * Add snapshot testing of Swaps’ React components for happy paths, increase minimum threshold for Jest * Add the test/jest folder for Jest setup and shared functions, use it in Swaps Jest tests * Fix ESLint issues, update linting config * Enable ESLint for .snap files (Jest snapshots), throw an error if a snapshot is bigger than 50 lines * Don’t run lint:fix for .snap files * Move `createProps` outside of `describe` blocks, move store creation inside tests * Use translations instead of keys, update a rendering function to load translations * Make sure all Jest snapshots are shorter than 50 lines (default limit) * Add / update props for Swaps tests * Fix React warnings when running tests for Swaps
70 lines
1.7 KiB
JavaScript
70 lines
1.7 KiB
JavaScript
import { MAINNET_CHAIN_ID } from '../../shared/constants/network';
|
|
|
|
export const createSwapsMockStore = () => {
|
|
return {
|
|
swaps: {
|
|
customGas: {
|
|
fallBackPrice: 5,
|
|
},
|
|
},
|
|
metamask: {
|
|
provider: {
|
|
chainId: MAINNET_CHAIN_ID,
|
|
},
|
|
cachedBalances: {
|
|
[MAINNET_CHAIN_ID]: 5,
|
|
},
|
|
accounts: {
|
|
'0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc': {
|
|
address: '0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc',
|
|
balance: '0x0',
|
|
},
|
|
'0xec1adf982415d2ef5ec55899b9bfb8bc0f29251b': {
|
|
address: '0xec1adf982415d2ef5ec55899b9bfb8bc0f29251b',
|
|
balance: '0x0',
|
|
},
|
|
},
|
|
selectedAddress: '0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc',
|
|
frequentRpcListDetail: [],
|
|
swapsState: {
|
|
quotes: {},
|
|
fetchParams: {
|
|
metaData: {
|
|
sourceTokenInfo: {
|
|
symbol: 'BAT',
|
|
},
|
|
destinationTokenInfo: {
|
|
symbol: 'ETH',
|
|
},
|
|
},
|
|
},
|
|
tokens: [
|
|
{
|
|
erc20: true,
|
|
symbol: 'BAT',
|
|
decimals: 18,
|
|
address: '0x0D8775F648430679A709E98d2b0Cb6250d2887EF',
|
|
},
|
|
{
|
|
erc20: true,
|
|
symbol: 'USDT',
|
|
decimals: 6,
|
|
address: '0xdAC17F958D2ee523a2206206994597C13D831ec7',
|
|
},
|
|
],
|
|
tradeTxId: null,
|
|
approveTxId: null,
|
|
quotesLastFetched: null,
|
|
customMaxGas: '',
|
|
customGasPrice: null,
|
|
selectedAggId: null,
|
|
customApproveTxData: '',
|
|
errorKey: '',
|
|
topAggId: null,
|
|
routeState: '',
|
|
swapsFeatureIsLive: false,
|
|
},
|
|
},
|
|
};
|
|
};
|