1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/settings/settings.test.js
Nidhi Kumari 9db971768b
UX Multichain: updated ui for settings page (#19167)
* 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
2023-05-23 23:59:00 +05:30

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();
});
});