You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
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 in Settings')).toBeInTheDocument();
|
|
});
|
|
});
|
|
|