test: skip opencode integration tests in CI

This commit is contained in:
Mohamed Boudra
2026-01-14 19:37:03 +07:00
parent aa090748a6
commit 347389965c

View File

@@ -72,7 +72,10 @@ async function collectTurnEvents(
return result;
}
describe("OpenCodeAgentClient", () => {
// Skip integration tests in CI - requires real OpenCode server
const shouldSkip = process.env.CI === "true";
describe.skipIf(shouldSkip)("OpenCodeAgentClient", () => {
const buildConfig = (cwd: string): AgentSessionConfig => ({
provider: "opencode",
cwd,