Version 2.43.0 Release: Contextual Project Trace & Overrides
This commit is contained in:
@@ -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);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user