Skip to content

Commit b49dcc6

Browse files
committed
test: skip compaction trigger test in CI until CLI is released
The test requires a CLI build with infinite sessions support. Run locally with COPILOT_CLI_PATH pointing to a local CLI build.
1 parent c334859 commit b49dcc6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

nodejs/test/e2e/compaction.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ import { createSdkTestContext } from "./harness/sdkTestContext.js";
55
describe("Compaction", async () => {
66
const { copilotClient: client } = await createSdkTestContext();
77

8-
it(
8+
// Skip in CI - requires CLI with infinite sessions support (not yet released)
9+
// Run locally with: COPILOT_CLI_PATH=/path/to/local/cli npm test -- test/e2e/compaction.test.ts
10+
it.skipIf(process.env.CI === "true")(
911
"should trigger compaction with low threshold and emit events",
1012
async () => {
1113
// Create session with very low compaction thresholds to trigger compaction quickly

0 commit comments

Comments
 (0)