mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
* UI/Card: Improve accessibility of Card component Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
29 lines
900 B
TypeScript
29 lines
900 B
TypeScript
import React from 'react';
|
|
import { render, screen } from '@testing-library/react';
|
|
import DataSourcesList from './DataSourcesList';
|
|
import { getMockDataSources } from './__mocks__/dataSourcesMocks';
|
|
import { LayoutModes } from '@grafana/data';
|
|
|
|
const setup = () => {
|
|
const props = {
|
|
dataSources: getMockDataSources(3),
|
|
layoutMode: LayoutModes.Grid,
|
|
};
|
|
|
|
return render(<DataSourcesList {...props} />);
|
|
};
|
|
|
|
describe('DataSourcesList', () => {
|
|
it('should render list of datasources', () => {
|
|
setup();
|
|
expect(screen.getAllByRole('listitem')).toHaveLength(3);
|
|
expect(screen.getAllByRole('heading')).toHaveLength(3);
|
|
});
|
|
|
|
it('should render all elements in the list item', () => {
|
|
setup();
|
|
expect(screen.getByRole('heading', { name: 'dataSource-0' })).toBeInTheDocument();
|
|
expect(screen.getByRole('link', { name: 'dataSource-0' })).toBeInTheDocument();
|
|
});
|
|
});
|