test("sum aggregated query full range successfully", async () => {
    const aggregation = new Aggregation(AggregationType.SUM, 5000);
    const timestampRange = new TimestampRange(date, date + 10000);
    const samples = await rtsClient.range("range1", timestampRange, undefined, aggregation);
    expect(Array.isArray(samples)).toBe(true);