D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
explore
/
RichHistory
/
Filename :
RichHistorySettingsTab.test.tsx
back
Copy
import { render, screen } from '@testing-library/react'; import React from 'react'; import { RichHistorySettingsTab, RichHistorySettingsProps } from './RichHistorySettingsTab'; const setup = (propOverrides?: Partial<RichHistorySettingsProps>) => { const props: RichHistorySettingsProps = { retentionPeriod: 14, starredTabAsFirstTab: true, activeDatasourceOnly: false, onChangeRetentionPeriod: jest.fn(), toggleStarredTabAsFirstTab: jest.fn(), toggleactiveDatasourceOnly: jest.fn(), deleteRichHistory: jest.fn(), }; Object.assign(props, propOverrides); return render(<RichHistorySettingsTab {...props} />); }; describe('RichHistorySettings', () => { it('should render component with correct retention period', () => { setup(); expect(screen.queryByText('2 weeks')).toBeInTheDocument(); }); it('should render component with correctly checked starredTabAsFirstTab and uncheched toggleActiveDatasourceOnly settings', () => { setup(); const checkboxes = screen.getAllByRole('checkbox'); expect(checkboxes.length).toBe(2); expect(checkboxes[0]).toHaveAttribute('checked'); expect(checkboxes[1]).not.toHaveAttribute('checked'); }); });