diff --git a/public/app/features/dashboard-scene/scene/DashboardDatasourceBehaviour.test.tsx b/public/app/features/dashboard-scene/scene/DashboardDatasourceBehaviour.test.tsx index 55aac56789a..10989531ef4 100644 --- a/public/app/features/dashboard-scene/scene/DashboardDatasourceBehaviour.test.tsx +++ b/public/app/features/dashboard-scene/scene/DashboardDatasourceBehaviour.test.tsx @@ -596,6 +596,10 @@ describe('DashboardDatasourceBehaviour', () => { }); it('Should re-run query after transformations reprocess', async () => { + // sometimes this tests fails with a console error `AggregateError` with an XMLHttpRequest component + // this is not related to the test, but a side effect of the interaction with scenes, mixed ds or even js dom + // considering it a flaky test, we are explicitly ignoring it by mocking console.error + jest.spyOn(console, 'error').mockImplementation(); const sourcePanel = new VizPanel({ title: 'Panel A', pluginId: 'table',