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:
parent
79d07d7ed8
commit
50f48338a6
|
|
@ -75,4 +75,7 @@ async function run() {
|
|||
}
|
||||
}
|
||||
|
||||
run();
|
||||
run().catch((e) => {
|
||||
console.error('❌ 冒烟测试执行异常:', e.message);
|
||||
process.exit(1);
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue