* Suggestions: hashes on suggestions, update logic to select first suggestion * fix types * Suggestions: New UI style updates * update some styles * getting styles just right * remove grouping when not on flag * adjust minimum width for sidebar * CI cleanups * updates from ad hoc review * add loading and error states to suggestions * remove unused import * update header ui for panel editor * restore back button to vizpicker * fix e2e test * fix e2e * add i18n update * use new util for setVisualization operation * Apply suggestions from code review Co-authored-by: Torkel Ödegaard <torkel@grafana.com> * comments from review * updates from review --------- Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
import { BootData } from '@grafana/data';
|
|
|
|
import { e2e } from '../utils';
|
|
|
|
describe('Panels smokescreen', () => {
|
|
beforeEach(() => {
|
|
e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD'), false);
|
|
});
|
|
|
|
after(() => {
|
|
e2e.flows.revertAllChanges();
|
|
});
|
|
|
|
it('Tests each panel type in the panel edit view to ensure no crash', () => {
|
|
e2e.flows.addDashboard();
|
|
|
|
e2e.pages.Dashboard.DashNav.shareButton().should('be.visible');
|
|
|
|
e2e.flows.addPanel({
|
|
dataSourceName: 'gdev-testdata',
|
|
timeout: 10000,
|
|
visitDashboardAtStart: false,
|
|
});
|
|
|
|
cy.window().then((win: Cypress.AUTWindow & { grafanaBootData: BootData }) => {
|
|
// Loop through every panel type and ensure no crash
|
|
Object.entries(win.grafanaBootData.settings.panels).forEach(([_, panel]) => {
|
|
// TODO: Remove Flame Graph check as part of addressing #66803
|
|
if (!panel.hideFromList && panel.state !== 'deprecated') {
|
|
e2e.components.PanelEditor.toggleVizPicker().click();
|
|
e2e.components.PluginVisualization.item(panel.name).scrollIntoView().should('be.visible').click();
|
|
|
|
e2e.components.PanelEditor.OptionsPane.content().should((e) => expect(e).to.contain(panel.name));
|
|
// TODO: Come up with better check / better failure messaging to clearly indicate which panel failed
|
|
cy.contains('An unexpected error happened').should('not.exist');
|
|
}
|
|
});
|
|
});
|
|
});
|
|
});
|