D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
dashboard
/
dashgrid
/
Filename :
DashboardGrid.test.tsx
back
Copy
import { render } from '@testing-library/react'; import React from 'react'; import { Dashboard } from '@grafana/schema'; import { DashboardMeta } from 'app/types'; import { DashboardModel } from '../state'; import { createDashboardModelFixture } from '../state/__fixtures__/dashboardFixtures'; import { DashboardGrid, Props } from './DashboardGrid'; import { Props as LazyLoaderProps } from './LazyLoader'; jest.mock('app/features/dashboard/dashgrid/LazyLoader', () => { const LazyLoader = ({ children }: LazyLoaderProps) => { return <>{children}</>; }; return { LazyLoader }; }); function getTestDashboard(overrides?: Partial<Dashboard>, metaOverrides?: Partial<DashboardMeta>): DashboardModel { const data = Object.assign( { title: 'My dashboard', panels: [ { id: 1, type: 'graph', title: 'My graph', gridPos: { x: 0, y: 0, w: 24, h: 10 }, }, { id: 2, type: 'graph2', title: 'My graph2', gridPos: { x: 0, y: 10, w: 25, h: 10 }, }, { id: 3, type: 'graph3', title: 'My graph3', gridPos: { x: 0, y: 20, w: 25, h: 100 }, }, { id: 4, type: 'graph4', title: 'My graph4', gridPos: { x: 0, y: 120, w: 25, h: 10 }, }, ], }, overrides ); return createDashboardModelFixture(data, metaOverrides); } describe('DashboardGrid', () => { it('should render without error', () => { const props: Props = { editPanel: null, viewPanel: null, isEditable: true, dashboard: getTestDashboard(), }; expect(() => render(<DashboardGrid {...props} />)).not.toThrow(); }); });