fix(qa-lab): address telegram qa review comments

This commit is contained in:
Ayaan Zaidi
2026-04-10 18:17:57 +05:30
parent 7348c3193d
commit 2aaf5a3baa
5 changed files with 45 additions and 5 deletions

View File

@@ -185,6 +185,20 @@ describe("qa cli runtime", () => {
});
});
it("defaults telegram qa runs onto the live provider lane", async () => {
await runQaTelegramCommand({
repoRoot: "/tmp/openclaw-repo",
scenarioIds: ["telegram-help-command"],
});
expect(runTelegramQaLive).toHaveBeenCalledWith(
expect.objectContaining({
repoRoot: path.resolve("/tmp/openclaw-repo"),
providerMode: "live-frontier",
}),
);
});
it("normalizes legacy live-openai suite runs onto the frontier provider mode", async () => {
await runQaSuiteCommand({
repoRoot: "/tmp/openclaw-repo",