Changeset e29cc2e for trip-planner-front/node_modules/karma/lib
- Timestamp:
- 11/25/21 22:08:24 (3 years ago)
- Branches:
- master
- Children:
- 8d391a1
- Parents:
- 59329aa
- Location:
- trip-planner-front/node_modules/karma/lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/karma/lib/launchers/capture_timeout.js
r59329aa re29cc2e 18 18 } 19 19 20 log.warn(`${this.name} ha venot captured in ${captureTimeout} ms, killing.`)20 log.warn(`${this.name} has not captured in ${captureTimeout} ms, killing.`) 21 21 this.error = 'timeout' 22 22 this.kill() -
trip-planner-front/node_modules/karma/lib/middleware/karma.js
r59329aa re29cc2e 46 46 const query = getQuery(url) 47 47 if (query['x-ua-compatible']) { 48 return ` \n<meta http-equiv="X-UA-Compatible" content="${query['x-ua-compatible']}"/>`48 return `<meta http-equiv="X-UA-Compatible" content="${query['x-ua-compatible']}"/>` 49 49 } 50 50 return '' … … 108 108 return serveStaticFile('/client.html', requestedRangeHeader, response, (data) => 109 109 data 110 .replace(' \n%X_UA_COMPATIBLE%', getXUACompatibleMetaElement(request.url))110 .replace('%X_UA_COMPATIBLE%', getXUACompatibleMetaElement(request.url)) 111 111 .replace('%X_UA_COMPATIBLE_URL%', getXUACompatibleUrl(request.url))) 112 112 } … … 227 227 .replace('%SCRIPT_URL_ARRAY%', () => 'window.__karma__.scriptUrls = ' + JSON.stringify(scriptUrls) + ';\n') 228 228 .replace('%MAPPINGS%', () => 'window.__karma__.files = {\n' + mappings.join(',\n') + '\n};\n') 229 .replace(' \n%X_UA_COMPATIBLE%', getXUACompatibleMetaElement(request.url))229 .replace('%X_UA_COMPATIBLE%', getXUACompatibleMetaElement(request.url)) 230 230 }) 231 231 }) -
trip-planner-front/node_modules/karma/lib/reporter.js
r59329aa re29cc2e 49 49 } 50 50 51 let msg = input.replace(URL_REGEXP, function ( _, prefix, path, __, ___, line, ____, column) {51 let msg = input.replace(URL_REGEXP, function (stackTracePath, prefix, path, __, ___, line, ____, column) { 52 52 const normalizedPath = prefix === 'base/' ? `${basePath}/${path}` : path 53 53 const file = lastServedFiles.find((file) => file.path === normalizedPath) … … 65 65 const original = getSourceMapConsumer(file.sourceMap).originalPositionFor({ line, column: zeroBasedColumn, bias }) 66 66 67 // If there is no original position/source for the current stack trace path, then 68 // we return early with the formatted generated position. This handles the case of 69 // generated code which does not map to anything, see Case 1 of the source-map spec. 70 // https://sourcemaps.info/spec.html. 71 if (original.source === null) { 72 return PathUtils.formatPathMapping(path, line, column) 73 } 74 67 75 // Source maps often only have a local file name, resolve to turn into a full path if 68 76 // the path is not absolute yet. … … 70 78 return `${PathUtils.formatPathMapping(resolve(path, original.source), original.line, oneBasedOriginalColumn)} <- ${PathUtils.formatPathMapping(path, line, column)}` 71 79 } catch (e) { 72 log.warn(`SourceMap position not found for trace: ${input}`) 80 log.warn(`An unexpected error occurred while resolving the original position for: ${stackTracePath}`) 81 log.warn(e) 73 82 } 74 83 }
Note:
See TracChangeset
for help on using the changeset viewer.