mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 02:10:45 -06:00
d8e99e2bb5
* cut down the e2e object more :) * undo changes in grafana-e2e * couple more things to undo in grafana-e2e
13 lines
401 B
TypeScript
13 lines
401 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('Ensure you can import a number of json test dashboards from a specific test directory', () => {
|
|
e2e.flows.importDashboard(testDashboard, 1000);
|
|
});
|
|
});
|