mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
7bca69849f
* Mark Scenes feature toggles as GA * Move old arch e2e to a new folder * Run E2E on scenes by default * Upgrade e2e-selectors to ensure the tests in Playwright works
19 lines
529 B
TypeScript
19 lines
529 B
TypeScript
import { selectors } from '@grafana/e2e-selectors';
|
|
|
|
import { e2e } from '../utils';
|
|
|
|
describe('Pie Chart Panel', () => {
|
|
beforeEach(() => {
|
|
e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD'));
|
|
});
|
|
|
|
it('Pie Chart rendering e2e tests', () => {
|
|
// open Panel Tests - Pie Chart
|
|
e2e.flows.openDashboard({ uid: 'lVE-2YFMz' });
|
|
|
|
cy.get(
|
|
`[data-viz-panel-key="panel-11"] [data-testid^="${selectors.components.Panels.Visualization.PieChart.svgSlice}"]`
|
|
).should('have.length', 5);
|
|
});
|
|
});
|