forked from grafana.jool/grafana-jool
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.
18 lines
539 B
18 lines
539 B
import { e2e } from '@grafana/e2e';
|
|
import { selectors } from '@grafana/e2e-selectors';
|
|
|
|
e2e.scenario({
|
|
describeName: 'Pie Chart Panel',
|
|
itName: 'Pie Chart rendering e2e tests',
|
|
addScenarioDataSource: false,
|
|
addScenarioDashBoard: false,
|
|
skipScenario: false,
|
|
scenario: () => {
|
|
// open Panel Tests - Pie Chart
|
|
e2e.flows.openDashboard({ uid: 'lVE-2YFMz' });
|
|
|
|
e2e()
|
|
.get(`[data-panelid=11] [aria-label^="${selectors.components.Panels.Visualization.PieChart.svgSlice}"]`)
|
|
.should('have.length', 5);
|
|
},
|
|
});
|
|
|