1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 10:30:04 +01:00
metamask-extension/ui/pages/settings/networks-tab/networks-tab-subheader/networks-tab-subheader.test.js
Mark Stacey d1cea85f33
Rename provider to providerConfig (#18907)
* Rename `provider` to `providerConfig`

The network controller `provider` state has been renamed to
 `providerConfig`. This better reflects what this state is, and makes
this controller more closely aligned with the core network controller.

All references to the provider configuration have been updated to
prefer `providerConfig` over `provider`, to make the distinction clear
between a provider and provider config.

Closes #18902

* Add migration
2023-05-02 13:23:20 -02:30

48 lines
1.5 KiB
JavaScript

import React from 'react';
import configureMockStore from 'redux-mock-store';
import { waitFor } from '@testing-library/react';
import { renderWithProvider } from '../../../../../test/jest/rendering';
import NetworksTabSubheader from '.';
const mockState = {
metamask: {
providerConfig: {
chainId: '0x539',
nickname: '',
rpcPrefs: {},
rpcUrl: 'http://localhost:8545',
ticker: 'ETH',
type: 'localhost',
},
networkConfigurations: {},
},
appState: {
networksTabSelectedRpcUrl: 'http://localhost:8545',
},
};
const renderComponent = (props) => {
const store = configureMockStore([])(mockState);
return renderWithProvider(<NetworksTabSubheader {...props} />, store);
};
describe('NetworksTabSubheader Component', () => {
it('should render network subheader correctly', () => {
const { queryByText, getByRole } = renderComponent({
addNewNetwork: false,
});
expect(queryByText('Networks')).toBeInTheDocument();
expect(queryByText('Add a network')).toBeInTheDocument();
expect(getByRole('button', { text: 'Add a network' })).toBeDefined();
});
it('should render add network form subheader correctly', () => {
const { queryByText, getAllByText } = renderComponent({
addNewNetwork: true,
});
expect(queryByText('Networks')).toBeInTheDocument();
waitFor(() => expect(getAllByText('>')).toBeInTheDocument());
expect(queryByText('Add a network')).toBeInTheDocument();
});
});