test: skip flaky hermes ACP tests (depend on live LLM)

Skip acp-client 'prompt() collects structured messages' and
resume-e2e 'resume() after close' — both require live LLM calls
and fail intermittently in CI.
This commit is contained in:
2026-05-23 18:43:35 +08:00
parent 1abc3b4cf4
commit 50cd93aa05
2 changed files with 4 additions and 2 deletions
@@ -54,7 +54,8 @@ describe("HermesAcpClient", () => {
{ timeout: 2 * 60 * 1000 }, { timeout: 2 * 60 * 1000 },
); );
it( // TODO(#435): flaky — depends on live LLM; mock or move to integration suite
it.skip(
"prompt() collects structured messages including tool calls", "prompt() collects structured messages including tool calls",
async () => { async () => {
await client.connect(process.cwd()); await client.connect(process.cwd());
@@ -21,7 +21,8 @@ describe("HermesAcpClient cross-process resume", () => {
clients.length = 0; clients.length = 0;
}); });
it( // TODO(#435): flaky — depends on live LLM; mock or move to integration suite
it.skip(
"resume() after close — second prompt returns non-empty text", "resume() after close — second prompt returns non-empty text",
async () => { async () => {
// --- Client A: first run --- // --- Client A: first run ---