mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
33 lines
941 B
JavaScript
33 lines
941 B
JavaScript
|
import React from 'react';
|
||
|
import { screen } from '@testing-library/react';
|
||
|
|
||
|
import { ETH } from '../../../helpers/constants/common';
|
||
|
import { renderWithProvider } from '../../../../test/jest';
|
||
|
import configureStore from '../../../store/store';
|
||
|
|
||
|
import GasDetailsItem from './gas-details-item';
|
||
|
|
||
|
const render = (props) => {
|
||
|
const store = configureStore({
|
||
|
metamask: {
|
||
|
nativeCurrency: ETH,
|
||
|
preferences: {
|
||
|
useNativeCurrencyAsPrimaryCurrency: true,
|
||
|
},
|
||
|
provider: {},
|
||
|
},
|
||
|
});
|
||
|
|
||
|
return renderWithProvider(<GasDetailsItem txData={{}} {...props} />, store);
|
||
|
};
|
||
|
|
||
|
describe('GasDetailsItem', () => {
|
||
|
it('should render label', () => {
|
||
|
render();
|
||
|
expect(screen.queryByText('Gas')).toBeInTheDocument();
|
||
|
expect(screen.queryByText('(estimated)')).toBeInTheDocument();
|
||
|
expect(screen.queryByText('Max fee:')).toBeInTheDocument();
|
||
|
expect(screen.queryByText('ETH')).toBeInTheDocument();
|
||
|
});
|
||
|
});
|