fix: add error handling to hli-smoke.test.js run() call

Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
Agent-Logs-Url: https://github.com/qinfendebingshuo/guanghulab/sessions/5c6d1708-122e-40ae-b9d5-1023b601481b
This commit is contained in:
copilot-swe-agent[bot] 2026-03-26 07:47:07 +00:00 committed by GitHub
parent 79d07d7ed8
commit 50f48338a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -75,4 +75,7 @@ async function run() {
}
}
run();
run().catch((e) => {
console.error('❌ 冒烟测试执行异常:', e.message);
process.exit(1);
});