Skip to content

Commit 110ce10

Browse files
arul28claude
andcommitted
ship: iteration 2 — fix test-desktop shard 4
- Update cliLaunch.test.ts assertion: .cursor/skills is now first in ancestorSkillDirs ordering (matches agentSkillRoots.ts change) - Use Partial<LaneLinearIssue> instead of Partial<typeof SAMPLE_ISSUE> to allow string description overrides in test helper Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 1d77869 commit 110ce10

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

apps/desktop/src/renderer/components/terminals/cliLaunch.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ describe("buildTrackedCliStartupCommand", () => {
228228
expect(launch.args.at(-1)).toContain("/repo/.ade/worktrees/chat-lane/.agents/skills");
229229
expect(launch.args.at(-1)).toContain("/repo/.ade/worktrees/chat-lane/apps/desktop/resources/agent-skills");
230230
expect(launch.env?.[ADE_AGENT_SKILLS_DIRS_ENV]?.startsWith(
231-
"/repo/.ade/worktrees/chat-lane/.claude/skills",
231+
"/repo/.ade/worktrees/chat-lane/.cursor/skills",
232232
)).toBe(true);
233233
});
234234

apps/desktop/src/shared/chatContextAttachments.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const SAMPLE_ISSUE: LaneLinearIssue = {
3636
updatedAt: "2026-05-25T20:32:37.271Z",
3737
};
3838

39-
function makeAttachment(overrides: Partial<typeof SAMPLE_ISSUE> = {}): AgentChatContextAttachment {
39+
function makeAttachment(overrides: Partial<LaneLinearIssue> = {}): AgentChatContextAttachment {
4040
return {
4141
type: "linear_issue",
4242
source: "manual",

0 commit comments

Comments
 (0)