diff --git a/vitest.config.ts b/vitest.config.ts index 3a0b4cc31..92bdb1002 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -5,7 +5,7 @@ export default defineConfig({ plugins: [react()], test: { globals: true, - pool: 'threads', + pool: 'vmThreads', clearMocks: true, // Server configuration to handle external dependencies server: { @@ -13,6 +13,11 @@ export default defineConfig({ inline: ['@primer/react', '@primer/css'], }, }, + experimental: { + importDurations: { + print: true, + }, + }, coverage: { enabled: false, reportOnFailure: true,