mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 19:00:54 -06:00
6781041860
* prevent recursion blowup in redux, attempt to reintroduce import e2e test * try importing json like this instead? * need the panel validation * Update text so it finds Panel data instead of Dataframe JSON * skip test for now
15 lines
423 B
TypeScript
15 lines
423 B
TypeScript
import { e2e } from '@grafana/e2e';
|
|
|
|
import testDashboard from '../dashboards/TestDashboard.json';
|
|
|
|
e2e.scenario({
|
|
describeName: 'Import Dashboards Test',
|
|
itName: 'Ensure you can import a number of json test dashboards from a specific test directory',
|
|
addScenarioDataSource: false,
|
|
addScenarioDashBoard: false,
|
|
skipScenario: false,
|
|
scenario: () => {
|
|
e2e.flows.importDashboard(testDashboard, 1000);
|
|
},
|
|
});
|