From d666bcda0bc598062fb38adc9d84b21ab8ccca28 Mon Sep 17 00:00:00 2001 From: "koalazf.99" Date: Sat, 2 Aug 2025 15:10:29 +0800 Subject: [PATCH] fix: ci --- packages/cli/src/ui/commands/docsCommand.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/cli/src/ui/commands/docsCommand.test.ts b/packages/cli/src/ui/commands/docsCommand.test.ts index 73b7396a..083ef5b2 100644 --- a/packages/cli/src/ui/commands/docsCommand.test.ts +++ b/packages/cli/src/ui/commands/docsCommand.test.ts @@ -35,7 +35,7 @@ describe('docsCommand', () => { throw new Error('docsCommand must have an action.'); } - const docsUrl = 'https://goo.gle/gemini-cli-docs'; + const docsUrl = 'https://github.com/QwenLM/qwen-code'; await docsCommand.action(mockContext, ''); @@ -57,7 +57,7 @@ describe('docsCommand', () => { // Simulate a sandbox environment process.env.SANDBOX = 'gemini-sandbox'; - const docsUrl = 'https://goo.gle/gemini-cli-docs'; + const docsUrl = 'https://github.com/QwenLM/qwen-code'; await docsCommand.action(mockContext, ''); @@ -80,7 +80,7 @@ describe('docsCommand', () => { // Simulate the specific 'sandbox-exec' environment process.env.SANDBOX = 'sandbox-exec'; - const docsUrl = 'https://goo.gle/gemini-cli-docs'; + const docsUrl = 'https://github.com/QwenLM/qwen-code'; await docsCommand.action(mockContext, '');