fix(charts): apply resample before rolling window in post-processing pipeline (#37987)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Varun Chawla
2026-03-04 11:25:42 -08:00
committed by GitHub
parent 27d54f8421
commit 796c206ee7
6 changed files with 12 additions and 10 deletions

View File

@@ -431,5 +431,5 @@ test('should add a formula annotation when X-axis column has dataset-level label
expect(formulaSeries).toBeDefined();
expect(formulaSeries?.data).toBeDefined();
expect(Array.isArray(formulaSeries?.data)).toBe(true);
expect((formulaSeries?.data as unknown[])?.length).toBeGreaterThan(0);
expect((formulaSeries!.data as unknown[]).length).toBeGreaterThan(0);
});