@@ -110,7 +110,7 @@ export class V8CoverageProvider extends BaseCoverageProvider implements Coverage
110
110
}
111
111
112
112
const converted = await Promise . all ( scriptCoverages . map ( async ( { url, functions } ) => {
113
- const sources = await this . getSources ( url )
113
+ const sources = await this . getSources ( url , functions )
114
114
115
115
// If no source map was found from vite-node we can assume this file was not run in the wrapper
116
116
const wrapperLength = sources . sourceMap ? WRAPPER_LENGTH : 0
@@ -204,7 +204,7 @@ export class V8CoverageProvider extends BaseCoverageProvider implements Coverage
204
204
} ) )
205
205
}
206
206
207
- private async getSources ( url : string ) : Promise < {
207
+ private async getSources ( url : string , functions : Profiler . FunctionCoverage [ ] = [ ] ) : Promise < {
208
208
source : string
209
209
originalSource ?: string
210
210
sourceMap ?: { sourcemap : EncodedSourceMap }
@@ -217,7 +217,12 @@ export class V8CoverageProvider extends BaseCoverageProvider implements Coverage
217
217
218
218
const map = transformResult ?. map
219
219
const code = transformResult ?. code
220
- const sourcesContent = map ?. sourcesContent ?. [ 0 ] || await fs . readFile ( filePath , 'utf-8' )
220
+ const sourcesContent = map ?. sourcesContent ?. [ 0 ] || await fs . readFile ( filePath , 'utf-8' ) . catch ( ( ) => {
221
+ // If file does not exist construct a dummy source for it.
222
+ // These can be files that were generated dynamically during the test run and were removed after it.
223
+ const length = findLongestFunctionLength ( functions )
224
+ return '.' . repeat ( length )
225
+ } )
221
226
222
227
// These can be uncovered files included by "all: true" or files that are loaded outside vite-node
223
228
if ( ! map )
@@ -261,3 +266,14 @@ function removeViteHelpersFromSourceMaps(source: string | undefined, map: Encode
261
266
262
267
return combinedMap as EncodedSourceMap
263
268
}
269
+
270
+ /**
271
+ * Find the function with highest `endOffset` to determine the length of the file
272
+ */
273
+ function findLongestFunctionLength ( functions : Profiler . FunctionCoverage [ ] ) {
274
+ return functions . reduce ( ( previous , current ) => {
275
+ const maxEndOffset = current . ranges . reduce ( ( endOffset , range ) => Math . max ( endOffset , range . endOffset ) , 0 )
276
+
277
+ return Math . max ( previous , maxEndOffset )
278
+ } , 0 )
279
+ }
0 commit comments