mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
28 lines
823 B
JavaScript
28 lines
823 B
JavaScript
import React from 'react';
|
|
import configureMockStore from 'redux-mock-store';
|
|
|
|
import { renderWithProvider } from '../../../../test/jest/rendering';
|
|
|
|
import AdvancedGasControls from './advanced-gas-controls.component';
|
|
|
|
const renderComponent = (props) => {
|
|
const store = configureMockStore([])({
|
|
metamask: { identities: [], provider: {} },
|
|
});
|
|
return renderWithProvider(<AdvancedGasControls {...props} />, store);
|
|
};
|
|
|
|
describe('AdvancedGasControls Component', () => {
|
|
it('should render correctly', () => {
|
|
expect(() => {
|
|
renderComponent();
|
|
}).not.toThrow();
|
|
});
|
|
|
|
it('should render gasLimit and gasPrice inputs', () => {
|
|
const { queryByText } = renderComponent();
|
|
expect(queryByText('Gas limit')).toBeInTheDocument();
|
|
expect(queryByText('Gas price')).toBeInTheDocument();
|
|
});
|
|
});
|