mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 07:32:12 +08:00
13 lines
406 B
TypeScript
13 lines
406 B
TypeScript
import testDashboard from '../dashboards/TestDashboard.json';
|
|
import { e2e } from '../utils';
|
|
|
|
describe('Import Dashboards Test', () => {
|
|
beforeEach(() => {
|
|
e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD'));
|
|
});
|
|
|
|
it.skip('Ensure you can import a number of json test dashboards from a specific test directory', () => {
|
|
e2e.flows.importDashboard(testDashboard, 1000);
|
|
});
|
|
});
|