diff --git a/test/helpers/import-fresh.ts b/test/helpers/import-fresh.ts index 32ec49c9695..577e25cd856 100644 --- a/test/helpers/import-fresh.ts +++ b/test/helpers/import-fresh.ts @@ -2,5 +2,7 @@ export async function importFreshModule( from: string, specifier: string, ): Promise { + // Vitest keys module instances by the full URL string, including the query + // suffix. These tests rely on that behavior to emulate code-split chunks. return (await import(/* @vite-ignore */ new URL(specifier, from).href)) as TModule; }