1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00

feat(1-3260): clarify comment

This commit is contained in:
Thomas Heartman 2025-01-22 09:19:06 +01:00
parent 2b36993ad0
commit 654f980866
No known key found for this signature in database
GPG Key ID: BD1F880DAED1EE78

View File

@ -237,7 +237,7 @@ test('can query for monthly aggregation of data for a specified range', async ()
const result =
await trafficDataUsageStore.getTrafficDataForMonthRange(monthsBack);
// should have the current month and the preceding n months
// should have the current month and the preceding n months (one entry per group)
expect(result.length).toBe((monthsBack + 1) * 2);
for (const entry of result) {