From 23ecddc5742282c7d0cd03120cf8c0445f8145ce Mon Sep 17 00:00:00 2001 From: tanzhenxin Date: Thu, 23 Oct 2025 17:27:08 +0800 Subject: [PATCH] fix: integration tests --- integration-tests/test-helper.ts | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/integration-tests/test-helper.ts b/integration-tests/test-helper.ts index 330904d3..e5660b85 100644 --- a/integration-tests/test-helper.ts +++ b/integration-tests/test-helper.ts @@ -148,7 +148,7 @@ export class TestRig { _interactiveOutput = ''; constructor() { - this.bundlePath = join(__dirname, '..', 'bundle/gemini.js'); + this.bundlePath = join(__dirname, '..', 'dist/cli.js'); this.testDir = null; } diff --git a/package.json b/package.json index 5af5fd05..aa74dd3e 100644 --- a/package.json +++ b/package.json @@ -63,10 +63,10 @@ } }, "bin": { - "qwen": "bundle/gemini.js" + "qwen": "dist/cli.js" }, "files": [ - "bundle/", + "dist/", "README.md", "LICENSE" ],