mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-12 10:12:11 +03:00
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:
@@ -81,7 +81,7 @@
|
||||
},
|
||||
"open-sse/handlers/search.ts": {
|
||||
"@typescript-eslint/no-explicit-any": {
|
||||
"count": 34
|
||||
"count": 33
|
||||
}
|
||||
},
|
||||
"open-sse/handlers/sseParser.ts": {
|
||||
|
||||
@@ -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 () => {
|
||||
|
||||
Reference in New Issue
Block a user