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