fix: switch user_main invocation to use keyword arguments for better default parameter handling (#6756)

* fix: switch user_main invocation to use keyword arguments for better default parameter handling

* fix: test

---------

Co-authored-by: archer <545436317@qq.com>
This commit is contained in:
DigHuang
2026-04-15 23:04:37 +08:00
committed by GitHub
parent c9915a6bac
commit ac36cad6d9
4 changed files with 27 additions and 9 deletions
@@ -25,8 +25,8 @@ beforeAll(async () => {
});
afterAll(async () => {
await jsPool.shutdown();
await pyPool.shutdown();
await jsPool?.shutdown();
await pyPool?.shutdown();
});
describe('模块拦截', () => {