From c59e4d39d977e349724eab8b4680021714755766 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 2 May 2026 08:55:28 +0100 Subject: [PATCH] refactor: trim rtt harness test surface --- scripts/lib/rtt-harness.ts | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/scripts/lib/rtt-harness.ts b/scripts/lib/rtt-harness.ts index 058e89f0f0b..f061a4cee8e 100644 --- a/scripts/lib/rtt-harness.ts +++ b/scripts/lib/rtt-harness.ts @@ -7,19 +7,7 @@ const execFileAsync = promisify(execFile); export type RttProviderMode = "mock-openai" | "live-frontier"; -export type RttCliOptions = { - packageTgz?: string; - providerMode: RttProviderMode; - runs: number; - samples: number; - sampleTimeoutMs: number; - harnessRoot: string; - output: string; - scenarios: string[]; - timeoutMs: number; -}; - -export type RttResult = { +type RttResult = { package: { spec: string; version: string; @@ -53,7 +41,7 @@ export type RttResult = { }; }; -export type TelegramQaSummary = { +type TelegramQaSummary = { scenarios?: Array<{ id?: string; rttMs?: number; @@ -266,7 +254,3 @@ export function buildRttResult(params: { artifacts: params.artifacts, }; } - -export const __testing = { - REQUIRED_TELEGRAM_ENV, -};