Version 2.43.0 Release: Contextual Project Trace & Overrides

This commit is contained in:
g1nation
2026-05-03 00:59:38 +09:00
parent 1d9c7f203f
commit d2c9f624b8
5 changed files with 84 additions and 4 deletions
+12
View File
@@ -113,4 +113,16 @@ describe('local project path preflight', () => {
expect(fallback).toContain('ConnectAI Project Knowledge Overview');
expect(fallback).not.toContain('어떤 기능 영역을 가장 먼저');
});
it('treats no-record-created answers as incomplete project knowledge creation', () => {
const context: any = {
globalStorageUri: { fsPath: path.join(root, '.storage') },
workspaceState: stateStore(),
globalState: stateStore()
};
const agent = new AgentExecutor(context) as any;
const answer = 'Record Path Check: 요청하신 지식 생성 작업은 파일 목록 검토를 통해 완료되었으며, 별도의 파일 기록이 생성되지 않았습니다.';
expect(agent.isBlockingProjectKnowledgeAnswer(answer)).toBe(true);
});
});