Skip to content

Commit

Permalink
chore: fix windows test
Browse files Browse the repository at this point in the history
  • Loading branch information
sheremet-va committed Nov 2, 2023
1 parent 7e988d7 commit fe67eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/run/pool-custom-fixtures/pool/custom-pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()}`,
Expand Down

0 comments on commit fe67eee

Please sign in to comment.