File tree 2 files changed +4
-4
lines changed
packages/vitest/src/runtime
test/core/__mocks__/axios
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -312,10 +312,10 @@ export class VitestMocker {
312
312
return null
313
313
}
314
314
315
- const files = readdirSync ( mockFolder )
316
315
const baseOriginal = basename ( path )
317
316
318
- function findFile ( files : string [ ] , baseOriginal : string ) : string | null {
317
+ function findFile ( mockFolder : string , baseOriginal : string ) : string | null {
318
+ const files = readdirSync ( mockFolder )
319
319
for ( const file of files ) {
320
320
const baseFile = basename ( file , extname ( file ) )
321
321
if ( baseFile === baseOriginal ) {
@@ -326,7 +326,7 @@ export class VitestMocker {
326
326
}
327
327
else {
328
328
// find folder/index.{js,ts}
329
- const indexFile = findFile ( readdirSync ( path ) , 'index' )
329
+ const indexFile = findFile ( path , 'index' )
330
330
if ( indexFile ) {
331
331
return indexFile
332
332
}
@@ -336,7 +336,7 @@ export class VitestMocker {
336
336
return null
337
337
}
338
338
339
- return findFile ( files , baseOriginal )
339
+ return findFile ( mockFolder , baseOriginal )
340
340
}
341
341
342
342
const dir = dirname ( path )
File renamed without changes.
You can’t perform that action at this time.
0 commit comments