Dashboards: Disable flaky import dashboard test in old architecture. (#101282)

disable flaky test
This commit is contained in:
Oscar Kilhed 2025-02-25 12:44:11 +01:00 committed by GitHub
parent 87a4034332
commit df99c92823
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ describe('Import Dashboards Test', () => {
e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD')); 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', () => { it.skip('Ensure you can import a number of json test dashboards from a specific test directory', () => {
e2e.flows.importDashboard(testDashboard, 1000); e2e.flows.importDashboard(testDashboard, 1000);
}); });
}); });