Revision ea8549b8c206598622b2ce0deb22a5b749407284 authored by Michael Mandrus on 14 October 2022, 14:27:06 UTC, committed by GitHub on 14 October 2022, 14:27:06 UTC
* initial cut at refactor - need to run more tests

* fix unit tests

* change newly unused function to test helper

* create unit tests for parsing query requests that cover a range of cases

* add some comments

* rename function to avoid dev confusion
1 parent 2ccbb4d
Raw File
solo-route.spec.ts
import { e2e } from '@grafana/e2e';

e2e.scenario({
  describeName: 'Solo Route',
  itName: 'Can view panels with shared queries in fullsceen',
  addScenarioDataSource: false,
  addScenarioDashBoard: false,
  skipScenario: false,
  scenario: () => {
    // open Panel Tests - Bar Gauge
    e2e.pages.SoloPanel.visit('ZqZnVvFZz/datasource-tests-shared-queries?orgId=1&panelId=4');

    e2e().get('canvas').should('have.length', 6);
  },
});
back to top