From d88610cf2b65ae1ee9e670a2ac8194b709c7cd01 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Mon, 27 Apr 2026 17:12:25 -0700 Subject: [PATCH] test: avoid bundled extension boundary false positive --- src/plugins/bundled-runtime-root.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/bundled-runtime-root.test.ts b/src/plugins/bundled-runtime-root.test.ts index af9e11d2d64..99d69dd960e 100644 --- a/src/plugins/bundled-runtime-root.test.ts +++ b/src/plugins/bundled-runtime-root.test.ts @@ -221,7 +221,8 @@ describe("prepareBundledPluginRuntimeRoot", () => { fs.writeFileSync( path.join(runtimePluginRoot, "index.js"), [ - "export { default } from ", + "export { default } ", + "from ", JSON.stringify("../../../dist/extensions/qqbot/index.js"), ";\n", ].join(""),