From b98265ab6b6937d96c1a5fd4e29731a83da1479b Mon Sep 17 00:00:00 2001 From: Brian Kemper Date: Fri, 18 Sep 2026 09:16:51 -0600 Subject: [PATCH] perf(core): cache test entry compilation in VM pools --- packages/core/src/runtime/worker/runInPool.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/src/runtime/worker/runInPool.ts b/packages/core/src/runtime/worker/runInPool.ts index b8a02d59b..6cf717ba2 100644 --- a/packages/core/src/runtime/worker/runInPool.ts +++ b/packages/core/src/runtime/worker/runInPool.ts @@ -987,6 +987,7 @@ const loadFiles = async ({ assetFiles, interopDefault, vmContext, + cacheCompilation: vmContext !== undefined, }); };