diff --git a/test/run/pool-custom-fixtures/pool/custom-pool.ts b/test/run/pool-custom-fixtures/pool/custom-pool.ts index d27f7c33a0137..b4e1f276cc44b 100644 --- a/test/run/pool-custom-fixtures/pool/custom-pool.ts +++ b/test/run/pool-custom-fixtures/pool/custom-pool.ts @@ -13,7 +13,7 @@ export default (ctx: Vitest): ProcessPool => { for await (const [project, file] of specs) { ctx.state.clearFiles(project) const methods = createMethodsRPC(project) - console.warn('[pool] running tests for', project.getName(), 'in', file.replace(process.cwd(), '')) + console.warn('[pool] running tests for', project.getName(), 'in', file.toLowerCase().replace(process.cwd().toLowerCase(), '')) const path = relative(project.config.root, file) const taskFile: File = { id: `${path}${project.getName()}`,