mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
9db971768b
* updated ui for settings page * lint fix * resolved errors * fixed search bar css * fixed css * lint fix * fixed tests * fixed indentation * updated settings aria label
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
import React from 'react';
|
|
import configureMockStore from 'redux-mock-store';
|
|
import { renderWithProvider } from '../../../test/lib/render-helpers';
|
|
import mockState from '../../../test/data/mock-state.json';
|
|
import Settings from '.';
|
|
import 'jest-canvas-mock';
|
|
|
|
describe('SettingsPage', () => {
|
|
const props = {
|
|
addNewNetwork: false,
|
|
addressName: '',
|
|
backRoute: '/',
|
|
breadCrumbTextKey: '',
|
|
conversionDate: Date.now(),
|
|
initialBreadCrumbKey: '',
|
|
initialBreadCrumbRoute: '',
|
|
isAddressEntryPage: false,
|
|
isPopup: false,
|
|
isSnapViewPage: false,
|
|
mostRecentOverviewPage: '/',
|
|
pathnameI18nKey: '',
|
|
};
|
|
|
|
const mockStore = configureMockStore()(mockState);
|
|
|
|
it('should render correctly', () => {
|
|
const { queryByText } = renderWithProvider(
|
|
<Settings {...props} />,
|
|
mockStore,
|
|
'/settings',
|
|
);
|
|
|
|
expect(queryByText('Settings')).toBeInTheDocument();
|
|
});
|
|
|
|
it('should render search correctly', () => {
|
|
const { queryByPlaceholderText } = renderWithProvider(
|
|
<Settings {...props} />,
|
|
mockStore,
|
|
'/settings',
|
|
);
|
|
|
|
expect(queryByPlaceholderText('Search')).toBeInTheDocument();
|
|
});
|
|
});
|