mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
d8e99e2bb5
* cut down the e2e object more :) * undo changes in grafana-e2e * couple more things to undo in grafana-e2e
15 lines
416 B
TypeScript
15 lines
416 B
TypeScript
import { e2e } from '../utils';
|
|
|
|
describe('Solo Route', () => {
|
|
beforeEach(() => {
|
|
e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD'));
|
|
});
|
|
|
|
it('Can view panels with shared queries in fullsceen', () => {
|
|
// open Panel Tests - Bar Gauge
|
|
e2e.pages.SoloPanel.visit('ZqZnVvFZz/datasource-tests-shared-queries?orgId=1&panelId=4');
|
|
|
|
cy.get('canvas').should('have.length', 6);
|
|
});
|
|
});
|