fix: integration tests

This commit is contained in:
tanzhenxin
2025-10-23 17:27:08 +08:00
parent b9dfff6e83
commit 23ecddc574
2 changed files with 3 additions and 3 deletions

View File

@@ -148,7 +148,7 @@ export class TestRig {
_interactiveOutput = ''; _interactiveOutput = '';
constructor() { constructor() {
this.bundlePath = join(__dirname, '..', 'bundle/gemini.js'); this.bundlePath = join(__dirname, '..', 'dist/cli.js');
this.testDir = null; this.testDir = null;
} }

View File

@@ -63,10 +63,10 @@
} }
}, },
"bin": { "bin": {
"qwen": "bundle/gemini.js" "qwen": "dist/cli.js"
}, },
"files": [ "files": [
"bundle/", "dist/",
"README.md", "README.md",
"LICENSE" "LICENSE"
], ],