Compare commits

..

1 Commits

Author SHA1 Message Date
Elizabeth Thompson
7c00f5567f fix(filters): preserve backend metric-based sorting in select filters (#35130)
Co-authored-by: Claude <noreply@anthropic.com>
2025-09-13 13:34:54 +03:00

View File

@@ -203,13 +203,7 @@ describe('SuperChartCore', () => {
);
await waitFor(() => {
// The container will have the Ant Design App wrapper, but no chart content
const testComponent = container.querySelector('.test-component');
expect(testComponent).not.toBeInTheDocument();
// Ensure only the Ant Design App wrapper is present
const antApp = container.querySelector('.ant-app');
expect(antApp).toBeInTheDocument();
expect(container).toBeEmptyDOMElement();
});
});
});