mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* adjust drone to run scenes e2e alongside * adjust typo in scenes e2e folder name for consistency * fix select options selector inssue with scenes bump * skip tests in old arch that result in race conditions * skip more flaky tests due to race conditions * skip scenes e2e instead of old arch in case of race condition * update to latest scenes version * skip test due to race conditions * skip flaky race condition test * modify and sign drone pipeline * remove unnecessary edits * resolve merge conflicts and regenerate drone.yml
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);
|
|
});
|
|
});
|