fix(base-red): prune stale ESLint suppression + align combo tests

Clears 'No new ESLint warnings' and combo test failures on release branch.

Refs #9679
This commit is contained in:
Diego Rodrigues de Sa e Souza
2026-08-08 08:45:42 -03:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -81,7 +81,7 @@
},
"open-sse/handlers/search.ts": {
"@typescript-eslint/no-explicit-any": {
"count": 34
"count": 33
}
},
"open-sse/handlers/sseParser.ts": {

View File

@@ -2318,7 +2318,7 @@ test("handleComboChat returns a 503 when every model is unavailable before execu
const payload = (await result.json()) as any;
assert.equal(result.status, 503);
assert.equal(payload.error.code, "ALL_ACCOUNTS_INACTIVE");
assert.equal(payload.error.code, "ALL_TARGETS_SKIPPED");
});
test("handleComboChat treats provider circuit breaker responses as ordinary target failures", async () => {
@@ -2847,7 +2847,7 @@ test("handleComboChat round-robin resolves nested combos and returns inactive wh
const payload = (await result.json()) as any;
assert.equal(result.status, 503);
assert.equal(payload.error.code, "ALL_ACCOUNTS_INACTIVE");
assert.equal(payload.error.code, "ALL_TARGETS_SKIPPED");
});
test("handleComboChat round-robin treats provider circuit breaker responses as ordinary target failures", async () => {