mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
* 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
62 lines
1.9 KiB
JavaScript
62 lines
1.9 KiB
JavaScript
import React from 'react';
|
|
|
|
import { renderWithProvider } from '../../../../../test/jest';
|
|
import { MAINNET_CHAIN_ID } from '../../../../../shared/constants/network';
|
|
import FeeCard from '.';
|
|
|
|
const createProps = (customProps = {}) => {
|
|
return {
|
|
primaryFee: {
|
|
fee: '0.0441 ETH',
|
|
maxFee: '0.04851 ETH',
|
|
},
|
|
secondaryFee: {
|
|
fee: '$101.98',
|
|
maxFee: '$112.17',
|
|
},
|
|
hideTokenApprovalRow: false,
|
|
onFeeCardMaxRowClick: jest.fn(),
|
|
tokenApprovalTextComponent: (
|
|
<span
|
|
key="swaps-view-quote-approve-symbol-1"
|
|
className="view-quote__bold"
|
|
>
|
|
ABC
|
|
</span>
|
|
),
|
|
tokenApprovalSourceTokenSymbol: 'ABC',
|
|
onTokenApprovalClick: jest.fn(),
|
|
metaMaskFee: '0.875',
|
|
isBestQuote: true,
|
|
numberOfQuotes: 6,
|
|
onQuotesClick: jest.fn(),
|
|
tokenConversionRate: 0.015,
|
|
chainId: MAINNET_CHAIN_ID,
|
|
...customProps,
|
|
};
|
|
};
|
|
|
|
describe('FeeCard', () => {
|
|
it('renders the component with initial props', () => {
|
|
const props = createProps();
|
|
const { getByText } = renderWithProvider(<FeeCard {...props} />);
|
|
expect(getByText('Using the best quote')).toBeInTheDocument();
|
|
expect(getByText('6 quotes')).toBeInTheDocument();
|
|
expect(getByText('Max network fee')).toBeInTheDocument();
|
|
expect(getByText('Estimated network fee')).toBeInTheDocument();
|
|
expect(getByText(props.primaryFee.fee)).toBeInTheDocument();
|
|
expect(getByText(props.primaryFee.maxFee)).toBeInTheDocument();
|
|
expect(getByText(props.secondaryFee.fee)).toBeInTheDocument();
|
|
expect(getByText(props.secondaryFee.maxFee)).toBeInTheDocument();
|
|
expect(
|
|
getByText('Quote includes a 0.875% MetaMask fee'),
|
|
).toBeInTheDocument();
|
|
expect(
|
|
document.querySelector('.fee-card__savings-and-quotes-header'),
|
|
).toMatchSnapshot();
|
|
expect(
|
|
document.querySelector('.fee-card__top-bordered-row'),
|
|
).toMatchSnapshot();
|
|
});
|
|
});
|