We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c334859 commit b49dcc6Copy full SHA for b49dcc6
nodejs/test/e2e/compaction.test.ts
@@ -5,7 +5,9 @@ import { createSdkTestContext } from "./harness/sdkTestContext.js";
5
describe("Compaction", async () => {
6
const { copilotClient: client } = await createSdkTestContext();
7
8
- it(
+ // 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")(
11
"should trigger compaction with low threshold and emit events",
12
async () => {
13
// Create session with very low compaction thresholds to trigger compaction quickly
0 commit comments