You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
360 B
12 lines
360 B
import { e2e } from '@grafana/e2e';
|
|
|
|
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: true,
|
|
scenario: () => {
|
|
e2e.flows.importDashboards('/dashboards', 1000);
|
|
},
|
|
});
|
|
|