test: drop removed gateway live shard fixture

This commit is contained in:
Peter Steinberger
2026-05-28 20:41:11 -04:00
parent 091e15139b
commit f09b69a78f
3 changed files with 2 additions and 6 deletions

View File

@@ -163,7 +163,6 @@ function isGatewayBackendLiveTest(file) {
return (
file === "src/gateway/gateway-acp-bind.live.test.ts" ||
file === "src/gateway/gateway-cli-backend.live.test.ts" ||
file === "src/gateway/gateway-cli-backend.system-prompt-resume.live.test.ts" ||
file === "src/gateway/gateway-codex-bind.live.test.ts" ||
file === "src/gateway/gateway-codex-harness.live.test.ts"
);

View File

@@ -4,10 +4,8 @@
* Unit-level regression tests for issue #80374 — three of the four code paths
* fixed in `fix(anthropic): pass system prompt on every turn for claude-cli
* backend`. These tests assert the argv-level behavior directly, which is the
* authoritative before/after proof (the matching live test in
* `src/gateway/gateway-cli-backend.system-prompt-resume.live.test.ts` is a
* smoke test only — model context retention can mask the bug at the response
* level).
* authoritative before/after proof; model context retention can mask this bug
* at the live response level.
*
* Two scenarios are exercised for each function:
*

View File

@@ -74,7 +74,6 @@ describe("scripts/test-live-shard", () => {
expect(selectLiveShardFiles("native-live-src-gateway-backends", allFiles)).toEqual([
"src/gateway/gateway-acp-bind.live.test.ts",
"src/gateway/gateway-cli-backend.live.test.ts",
"src/gateway/gateway-cli-backend.system-prompt-resume.live.test.ts",
"src/gateway/gateway-codex-bind.live.test.ts",
"src/gateway/gateway-codex-harness.live.test.ts",
]);