@@ -31,8 +31,7 @@ function replaceRequirePaths(code, currentPath, testFilePath) {
31
31
modulePath = importPath ;
32
32
}
33
33
34
- if ( ! modulePath . startsWith ( "./" ) && ! modulePath . startsWith ( "../" ) )
35
- return match ;
34
+ if ( ! modulePath . startsWith ( "./" ) && ! modulePath . startsWith ( "../" ) ) { return match ; }
36
35
37
36
const absoluteRequirePath = path . resolve ( currentPath , modulePath ) ;
38
37
@@ -51,7 +50,6 @@ function replaceRequirePaths(code, currentPath, testFilePath) {
51
50
52
51
async function getAstFromFilePath ( filePath ) {
53
52
let data = await fs . readFile ( filePath , "utf8" ) ;
54
- let nodeTypesStack = [ ] ;
55
53
// Remove shebang if it exists
56
54
if ( data . indexOf ( "#!" ) === 0 ) {
57
55
data = "//" + data ;
@@ -60,7 +58,7 @@ async function getAstFromFilePath(filePath) {
60
58
const ast = babelParser . parse ( data , {
61
59
sourceType : "module" , // Consider input as ECMAScript module
62
60
locations : true ,
63
- plugins : [ "jsx" , "objectRestSpread" , "typescript" ] , // Enable JSX, typescript and object rest/spread syntax
61
+ plugins : [ "jsx" , "objectRestSpread" , "typescript" ] // Enable JSX, typescript and object rest/spread syntax
64
62
} ) ;
65
63
66
64
return ast ;
@@ -97,14 +95,14 @@ async function getModuleTypeFromFilePath(ast) {
97
95
moduleType = "CommonJS" ;
98
96
path . stop ( ) ; // Stop traversal when a CommonJS statement is found
99
97
}
100
- } ,
98
+ }
101
99
} ) ;
102
100
103
101
return moduleType ;
104
102
}
105
103
106
104
function collectTopRequires ( node ) {
107
- let requires = [ ] ;
105
+ const requires = [ ] ;
108
106
babelTraverse ( node , {
109
107
VariableDeclaration ( path ) {
110
108
if (
@@ -117,7 +115,7 @@ function collectTopRequires(node) {
117
115
} ,
118
116
ImportDeclaration ( path ) {
119
117
requires . push ( generator ( path . node ) . code ) ;
120
- } ,
118
+ }
121
119
} ) ;
122
120
return requires ;
123
121
}
@@ -147,19 +145,19 @@ function getFullPathFromRequireOrImport(importPath, filePath) {
147
145
if (
148
146
importPath &&
149
147
( importPath . startsWith ( "./" ) || importPath . startsWith ( "../" ) )
150
- )
148
+ ) {
151
149
importPath = path . resolve (
152
150
filePath . substring ( 0 , filePath . lastIndexOf ( "/" ) ) ,
153
151
importPath
154
152
) ;
155
- if ( importPath . lastIndexOf ( ".js" ) + ".js" . length !== importPath . length )
156
- importPath += ".js" ;
153
+ }
154
+ if ( importPath . lastIndexOf ( ".js" ) + ".js" . length !== importPath . length ) { importPath += ".js" ; }
157
155
return importPath ;
158
156
}
159
157
160
158
function getRelatedFunctions ( node , ast , filePath , functionList ) {
161
- let relatedFunctions = [ ] ;
162
- let requiresFromFile = collectTopRequires ( ast ) ;
159
+ const relatedFunctions = [ ] ;
160
+ const requiresFromFile = collectTopRequires ( ast ) ;
163
161
164
162
function processNodeRecursively ( node ) {
165
163
if ( node . type === "CallExpression" ) {
@@ -189,12 +187,12 @@ function getRelatedFunctions(node, ast, filePath, functionList) {
189
187
requiredPath = getPathFromRequireOrImport ( requiredPath ) ;
190
188
requiredPath = getFullPathFromRequireOrImport ( requiredPath , filePath ) ;
191
189
}
192
- let functionFromList = functionList [ requiredPath + ":" + funcName ] ;
190
+ const functionFromList = functionList [ requiredPath + ":" + funcName ] ;
193
191
if ( functionFromList ) {
194
192
relatedFunctions . push (
195
193
_ . extend ( functionFromList , {
196
194
fileName : requiredPath ,
197
- importPath,
195
+ importPath
198
196
} )
199
197
) ;
200
198
}
@@ -252,7 +250,7 @@ async function stripUnrelatedFunctions(filePath, targetFuncNames) {
252
250
}
253
251
254
252
function processAst ( ast , cb ) {
255
- let nodeTypesStack = [ ] ;
253
+ const nodeTypesStack = [ ] ;
256
254
babelTraverse ( ast , {
257
255
enter ( path ) {
258
256
nodeTypesStack . push ( path . node . type ) ;
@@ -276,7 +274,7 @@ function processAst(ast, cb) {
276
274
// module.exports.funcName = function() { ... }
277
275
// module.exports = function() { ... }
278
276
const loc = path . node . loc . start ;
279
- let funcName =
277
+ const funcName =
280
278
left . property . name || `anon_func_${ loc . line } _${ loc . column } ` ;
281
279
return cb ( funcName , path , "exportObj" ) ;
282
280
}
@@ -307,9 +305,7 @@ function processAst(ast, cb) {
307
305
}
308
306
} ) ;
309
307
}
310
- }
311
- // Handle TypeScript transpiled exports
312
- else if (
308
+ } /* Handle TypeScript transpiled exports */ else if (
313
309
left . type === "MemberExpression" &&
314
310
left . object . name === "exports"
315
311
) {
@@ -416,7 +412,7 @@ function processAst(ast, cb) {
416
412
} ,
417
413
exit ( path ) {
418
414
nodeTypesStack . pop ( ) ;
419
- } ,
415
+ }
420
416
} ) ;
421
417
}
422
418
@@ -425,7 +421,7 @@ function getSourceCodeFromAst(ast) {
425
421
}
426
422
427
423
function collectTestRequires ( node ) {
428
- let requires = [ ] ;
424
+ const requires = [ ] ;
429
425
babelTraverse ( node , {
430
426
ImportDeclaration ( path ) {
431
427
if (
@@ -435,12 +431,11 @@ function collectTestRequires(node) {
435
431
) {
436
432
const requireData = {
437
433
code : generator ( path . node ) . code ,
438
- functionNames : [ ] ,
434
+ functionNames : [ ]
439
435
} ;
440
436
441
437
_ . forEach ( path . node . specifiers , ( s ) => {
442
- if ( s . local && s . local . name )
443
- requireData . functionNames . push ( s . local . name ) ;
438
+ if ( s . local && s . local . name ) { requireData . functionNames . push ( s . local . name ) ; }
444
439
} ) ;
445
440
446
441
requires . push ( requireData ) ;
@@ -454,7 +449,7 @@ function collectTestRequires(node) {
454
449
) {
455
450
const requireData = {
456
451
code : generator ( path . node ) . code ,
457
- functionNames : [ ] ,
452
+ functionNames : [ ]
458
453
} ;
459
454
460
455
// In case of a CommonJS require, the function name is usually the variable identifier of the parent node
@@ -468,36 +463,36 @@ function collectTestRequires(node) {
468
463
469
464
requires . push ( requireData ) ;
470
465
}
471
- } ,
466
+ }
472
467
} ) ;
473
468
return requires ;
474
469
}
475
470
476
471
function getRelatedTestImports ( ast , filePath , functionList ) {
477
- let relatedCode = [ ] ;
478
- let requiresFromFile = collectTestRequires ( ast ) ;
472
+ const relatedCode = [ ] ;
473
+ const requiresFromFile = collectTestRequires ( ast ) ;
479
474
480
- for ( let fileImport in requiresFromFile ) {
475
+ for ( const fileImport in requiresFromFile ) {
481
476
let requiredPath = getPathFromRequireOrImport (
482
477
requiresFromFile [ fileImport ] . code
483
478
) ;
484
479
requiredPath = getFullPathFromRequireOrImport ( requiredPath , filePath ) ;
485
480
486
481
_ . forEach ( requiresFromFile [ fileImport ] . functionNames , ( funcName ) => {
487
- let functionFromList = functionList [ requiredPath + ":" + funcName ] ;
482
+ const functionFromList = functionList [ requiredPath + ":" + funcName ] ;
488
483
if ( functionFromList ) {
489
484
relatedCode . push (
490
485
_ . extend ( functionFromList , {
491
- fileName : requiredPath ,
486
+ fileName : requiredPath
492
487
} )
493
488
) ;
494
489
}
495
490
} ) ;
496
491
}
497
492
498
- for ( let relCode of relatedCode ) {
493
+ for ( const relCode of relatedCode ) {
499
494
let relatedCodeImports = "" ;
500
- for ( let func of relCode . relatedFunctions ) {
495
+ for ( const func of relCode . relatedFunctions ) {
501
496
if ( func . importPath ) {
502
497
relatedCodeImports += `${ func . importPath } \n` ;
503
498
}
@@ -521,5 +516,5 @@ module.exports = {
521
516
processAst,
522
517
getModuleTypeFromFilePath,
523
518
getSourceCodeFromAst,
524
- getRelatedTestImports,
519
+ getRelatedTestImports
525
520
} ;
0 commit comments