feat: update vars

This commit is contained in:
pomelo-nwu
2025-09-12 16:01:38 +08:00
parent 19590766b9
commit 9ed3f887af
6 changed files with 18 additions and 12 deletions

View File

@@ -18,7 +18,7 @@ describe('IdeClient.validateWorkspacePath', () => {
expect(result.isValid).toBe(true);
});
it('should return invalid if GEMINI_CLI_IDE_WORKSPACE_PATH is undefined', () => {
it('should return invalid if QWEN_CODE_IDE_WORKSPACE_PATH is undefined', () => {
const result = IdeClient.validateWorkspacePath(
undefined,
'VS Code',
@@ -28,7 +28,7 @@ describe('IdeClient.validateWorkspacePath', () => {
expect(result.error).toContain('Failed to connect');
});
it('should return invalid if GEMINI_CLI_IDE_WORKSPACE_PATH is empty', () => {
it('should return invalid if QWEN_CODE_IDE_WORKSPACE_PATH is empty', () => {
const result = IdeClient.validateWorkspacePath(
'',
'VS Code',