(label: string, arr: ReadonlyArray<unknown>, expected: number)
| 19 | }; |
| 20 | |
| 21 | const assertArrayLength = (label: string, arr: ReadonlyArray<unknown>, expected: number): void => { |
| 22 | assertEqual(`${label} length`, arr.length, expected); |
| 23 | }; |
| 24 | |
| 25 | // Helper to compare OHLC values (works for both tuple and object) |
| 26 | const assertOHLCEqual = ( |
no test coverage detected