fix(ci): repair boundary guards

This commit is contained in:
Peter Steinberger
2026-04-06 17:40:27 +01:00
parent 51f77b5e04
commit f7f861082a
3 changed files with 2 additions and 6 deletions

View File

@@ -1,9 +1,9 @@
import { mkdtempSync } from "node:fs";
import { tmpdir } from "node:os";
import { join } from "node:path";
import { captureEnv } from "openclaw/plugin-sdk/testing";
import { describe, expect, it } from "vitest";
import { resolveImplicitProvidersForTest } from "../../src/agents/models-config.e2e-harness.js";
import { captureEnv } from "../../src/test-utils/env.js";
describe("Kilo Gateway implicit provider", () => {
it("should include kilocode when KILOCODE_API_KEY is configured", async () => {

View File

@@ -1,10 +1,10 @@
import { mkdtempSync } from "node:fs";
import { tmpdir } from "node:os";
import { join } from "node:path";
import { captureEnv } from "openclaw/plugin-sdk/testing";
import { describe, expect, it } from "vitest";
import { resolveImplicitProvidersForTest } from "../../src/agents/models-config.e2e-harness.js";
import type { ModelDefinitionConfig } from "../../src/config/types.models.js";
import { captureEnv } from "../../src/test-utils/env.js";
function buildExplicitKimiModels(): ModelDefinitionConfig[] {
return [

View File

@@ -1,10 +1,6 @@
import type { OpenClawConfig } from "../config/config.js";
import { ensureModelAllowlistEntry } from "./provider-model-allowlist.js";
import { applyAgentDefaultPrimaryModel } from "./provider-model-primary.js";
export {
applyOpencodeZenModelDefault,
OPENCODE_ZEN_DEFAULT_MODEL,
} from "../../extensions/opencode/api.js";
export const OPENAI_DEFAULT_MODEL = "openai/gpt-5.4";
export const OPENAI_CODEX_DEFAULT_MODEL = "openai-codex/gpt-5.4";